mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #7 from jtand/cloud-logging-eight
Fixed a bug where logging_command wasnt set as a key in a couple spots
This commit is contained in:
commit
ed18384108
1 changed files with 2 additions and 2 deletions
|
@ -1094,7 +1094,7 @@ def deploy_windows(host,
|
|||
logging_stop_cmd = 'winexe {0} "sc stop salt-minion"'.format(
|
||||
logging_creds
|
||||
)
|
||||
win_cmd(stop_cmd, logging_stop_cmd)
|
||||
win_cmd(stop_cmd, logging_command=logging_stop_cmd)
|
||||
|
||||
time.sleep(5)
|
||||
|
||||
|
@ -1102,7 +1102,7 @@ def deploy_windows(host,
|
|||
logging_start_cmd = 'winexe {0} "sc start salt-minion"'.format(
|
||||
logging_creds
|
||||
)
|
||||
win_cmd(start_cmd, logging_start_cmd)
|
||||
win_cmd(start_cmd, logging_command=logging_start_cmd)
|
||||
|
||||
# Fire deploy action
|
||||
fire_event(
|
||||
|
|
Loading…
Add table
Reference in a new issue