updated puppet.py with an example that has more than one argument, also added missing comma on line 663 that was causing cmd.py to fail

This commit is contained in:
Forrest Alvarez 2013-09-14 05:55:33 +00:00
parent 4a2660a618
commit 59d0a25278
2 changed files with 2 additions and 1 deletions

View File

@ -124,6 +124,7 @@ def run(*args, **kwargs):
salt '*' puppet.run
salt '*' puppet.run tags=basefiles::edit,apache::server
salt '*' puppet.run agent onetime no-daemonize no-usecacheonfailure no-splay ignorecache
salt '*' puppet.run debug
salt '*' puppet.run apply /a/b/manifest.pp modulepath=/a/b/modules tags=basefiles::edit,apache::server
'''

View File

@ -660,7 +660,7 @@ def script(name,
'cwd': cwd,
'template': template,
'umask': umask,
'timeout': timeout
'timeout': timeout,
'__env__': __env__})
run_check_cmd_kwargs = {