Merge pull request #274291 from wahjava/fix-drbd-service
drbd: fix path to drbdadm
This commit is contained in:
commit
63d30a7bff
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ let cfg = config.services.drbd; in
|
|||
wants = [ "systemd-udev.settle.service" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.drbd}/sbin/drbdadm up all";
|
||||
ExecStop = "${pkgs.drbd}/sbin/drbdadm down all";
|
||||
ExecStart = "${pkgs.drbd}/bin/drbdadm up all";
|
||||
ExecStop = "${pkgs.drbd}/bin/drbdadm down all";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue