Merge pull request 'mcpo: fix port in ExecStart' (#45) from develop into release-25.11
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 5s
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 5s
Reviewed-on: #45
This commit is contained in:
commit
7d73c46b94
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ in
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = "${getExe cfg.package} --port ${cfg.port} --config ${configFile}";
|
ExecStart = "${getExe cfg.package} --port ${toString cfg.port} --config ${configFile}";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
User = cfg.user;
|
User = cfg.user;
|
||||||
Group = cfg.group;
|
Group = cfg.group;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue