Code style fix

It somehow helps to not mix different flag styles in one command.
This commit is contained in:
Alexander Krasnukhin 2016-05-24 13:58:29 +02:00
parent 56789c52dc
commit 2db41fd824

View file

@ -172,7 +172,7 @@ If($runservice) {
}
Else {
Write-Output -NoNewline "Stopping salt minion and setting it to 'Manual'"
Set-Service "salt-minion" -startupType "Manual"
Set-Service "salt-minion" -StartupType "Manual"
Stop-Service "salt-minion"
}