Merge pull request #8837 from micahhausler/develop

Fixes #8836 - Add env param/documentation to cmd.wait
This commit is contained in:
Thomas S Hatch 2013-11-26 14:31:05 -08:00
commit 4b813e59f9

View File

@ -279,6 +279,7 @@ def wait(name,
user=None,
group=None,
shell=None,
env=(),
stateful=False,
umask=None,
**kwargs):
@ -310,6 +311,10 @@ def wait(name,
shell
The shell to use for execution, defaults to /bin/sh
env
Pass in a list or dict of environment variables to be applied to the
command upon execution
umask
The umask (in octal) to use when running the command.