fix(#1052): use systemctl reload nginx instead of systemd-run

This commit is contained in:
damocles 2026-06-02 01:00:48 +02:00
commit 9d11e5b6d6
2 changed files with 12 additions and 43 deletions

View file

@ -290,48 +290,17 @@ fn reload_gateway_nginx() {
let state = nginx_active_state();
let success = match state.as_str() {
"active" => {
// nginx master is running — SIGHUP is the zero-downtime path.
// `systemd-run --machine=hive-gateway --quiet --wait --
// /run/current-system/sw/bin/nginx -s reload` runs the
// signal inside the container and exits with the nginx exit
// code. Full binary path required — systemd-run's limited
// PATH misses /run/current-system/sw/bin/. `--` separates
// systemd-run flags from the command.
let status = std::process::Command::new("systemd-run")
.args([
"--machine=hive-gateway",
"--quiet",
"--wait",
"--",
// Full path required: systemd-run executes with a
// limited PATH that doesn't include NixOS's
// /run/current-system/sw/bin/ — plain "nginx" yields
// exit 203 (EXEC failure).
"/run/current-system/sw/bin/nginx",
"-s",
"reload",
])
.status();
match status {
Ok(s) if s.success() => {
tracing::debug!("gateway nginx reload signal sent");
true
}
Ok(s) => {
tracing::warn!(
exit_code = ?s.code(),
"gateway nginx reload exited non-zero — will retry next poll tick"
);
false
}
Err(e) => {
tracing::warn!(
error = %e,
"failed to invoke systemd-run for gateway nginx reload — will retry"
);
false
}
// nginx master is running — ask systemd to reload the unit
// (SIGHUP to master, zero-downtime worker replacement).
// `systemctl -M hive-gateway reload nginx` lets systemd
// resolve the binary path; avoids the exit-203 (EXEC)
// failure that `systemd-run -- nginx` hit on NixOS where
// the limited transient-unit PATH misses /run/current-system/sw/bin/.
let ok = gateway_systemctl(&["reload", "nginx"]);
if ok {
tracing::debug!("gateway nginx reload signal sent");
}
ok
}
"failed" => {
// Unit hit start-limit (e.g. repeated nginx -t failures from

View file

@ -421,8 +421,8 @@ in
};
# nginx reload is triggered from the HOST side by hive-c0re
# via `systemd-run --machine=hive-gateway /run/current-system/sw/bin/nginx -s reload`
# (full path required — systemd-run's limited PATH misses /run/current-system/sw/bin/)
# via `systemctl -M hive-gateway reload nginx` — lets systemd
# resolve the nginx binary path, avoiding exit-203 EXEC failures.
# after each agents.conf write. A path unit watching the
# bind-mounted file inside the container was tried first
# (A path unit inside the container was tried but IN_MOVED_TO from an atomic rename on the host