Compare commits

..

2 commits

Author SHA1 Message Date
sid
7d73c46b94 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
Reviewed-on: #45
2026-05-18 18:45:23 +02:00
sid
179a02731b mcpo: fix port in ExecStart
All checks were successful
Build tests / build-hosts (pull_request) Successful in 23s
Flake check / flake-check (pull_request) Successful in 23s
2026-05-18 18:44:30 +02:00

View file

@ -106,7 +106,7 @@ in
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${getExe cfg.package} --port ${cfg.port} --config ${configFile}";
ExecStart = "${getExe cfg.package} --port ${toString cfg.port} --config ${configFile}";
Restart = "on-failure";
User = cfg.user;
Group = cfg.group;