Merge pull request #9984 from grwlf/syncthing
syncthing: update systemd service config according to upstream example
This commit is contained in:
commit
ee7e17c6a7
@ -54,12 +54,15 @@ in
|
|||||||
description = "Syncthing service";
|
description = "Syncthing service";
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
environment.STNORESTART = "placeholder"; # do not self-restart
|
environment.STNORESTART = "yes"; # do not self-restart
|
||||||
|
environment.STNOUPGRADE = "yes";
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
User = "${cfg.user}";
|
User = "${cfg.user}";
|
||||||
PermissionsStartOnly = true;
|
PermissionsStartOnly = true;
|
||||||
Restart = "always";
|
Restart = "on-failure";
|
||||||
ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -home=${cfg.dataDir}";
|
ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -home=${cfg.dataDir}";
|
||||||
|
SuccessExitStatus = "2 3 4";
|
||||||
|
RestartForceExitStatus="3 4";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user