Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1874 from ehazlett/debian-provision-fix
Browse files Browse the repository at this point in the history
fix debian provisioning bug with systemd
  • Loading branch information
nathanleclaire committed Sep 17, 2015
2 parents 7e775fc + b815045 commit 0aca429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmachine/provision/debian.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (provisioner *DebianProvisioner) Service(name string, action serviceaction.
return err
}

command := fmt.Sprintf("sudo systemctl %s %s", action.String(), name)
command := fmt.Sprintf("sudo systemctl -f %s %s", action.String(), name)

if _, err := provisioner.SSHCommand(command); err != nil {
return err
Expand Down

0 comments on commit 0aca429

Please sign in to comment.