Merge pull request #274291 from wahjava/fix-drbd-service

drbd: fix path to drbdadm
This commit is contained in:
Nick Cao 2023-12-15 09:58:55 -05:00 committed by GitHub
commit 63d30a7bff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
};
};
};