Created
November 27, 2013 08:51
-
-
Save kmr/7672648 to your computer and use it in GitHub Desktop.
puppet/lib/puppet/run.rb fix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,11 @@ | |
@background = options[:background] | |
options.delete(:background) | |
end | |
+ if options.include?(:status) | |
+ @status = options[:status] | |
+ options.delete(:status) | |
+ end | |
+ | |
valid_options = [:tags, :ignoreschedules, :pluginsync] | |
options.each do |key, value| |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment