diff options
-rwxr-xr-x | bin/puppetd | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/puppetd b/bin/puppetd index be8af2287..8124a301d 100755 --- a/bin/puppetd +++ b/bin/puppetd @@ -195,6 +195,7 @@ options = { } begin + explicit_waitforcert = false result.each { |opt,arg| case opt # First check to see if the argument is a valid configuration parameter; @@ -243,7 +244,7 @@ begin options[:client] = false when "--onetime" options[:onetime] = true - options[:waitforcert] = 0 + options[:waitforcert] = 0 unless explicit_waitforcert when "--port" args[:Port] = arg when "--logdest" @@ -255,6 +256,7 @@ begin end when "--waitforcert" options[:waitforcert] = arg.to_i + explicit_waitforcert = true else Puppet.config.handlearg(opt, arg) end |