Skip to content

Commit

Permalink
Correcting service name in install.ps1.
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Phillips <jamie.phillips@suse.com>
  • Loading branch information
phillipsj committed Nov 8, 2021
1 parent 16cdde5 commit 80de2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ systemagent:
if ((Get-Service -Name $ServiceName -ErrorAction SilentlyContinue)) {
Write-LogInfo "$ServiceName service found, stopping now"
Stop-Service -Name $ServiceName
while ((Get-Service -Name wins).Status -ne 'Stopped') {
while ((Get-Service -Name $ServiceName).Status -ne 'Stopped') {
Write-LogInfo "Waiting for $ServiceName service to stop"
Start-Sleep -s 5
}
Expand Down

0 comments on commit 80de2a8

Please sign in to comment.