From 2db41fd824754116a9862b96fe8b5ff5d396584f Mon Sep 17 00:00:00 2001 From: Alexander Krasnukhin Date: Tue, 24 May 2016 13:58:29 +0200 Subject: [PATCH] Code style fix It somehow helps to not mix different flag styles in one command. --- bootstrap-salt.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-salt.ps1 b/bootstrap-salt.ps1 index c7e0194..2b4eee2 100644 --- a/bootstrap-salt.ps1 +++ b/bootstrap-salt.ps1 @@ -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" }