mirror of https://github.com/docker/docs.git
fix debian provisioning bug with systemd
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
parent
7e775fcfae
commit
b8150450a6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue