diff options
-rwxr-xr-x | lib/puppet/type/exec.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/type/exec.rb b/lib/puppet/type/exec.rb index 79c9ff999..e5071b484 100755 --- a/lib/puppet/type/exec.rb +++ b/lib/puppet/type/exec.rb @@ -236,7 +236,8 @@ module Puppet newparam(:timeout) do desc "The maximum time the command should take. If the command takes longer than the timeout, the command is considered to have failed - and will be stopped. Use any negative number to disable the timeout." + and will be stopped. Use any negative number to disable the timeout. + The time is specified in seconds." munge do |value| value = value.shift if value.is_a?(Array) |