The systemd unit templates hardcoded {{ install_dir }}/venv/bin/decnet.
On production hosts enroll_bootstrap.sh creates exactly that path so it
worked. On dev boxes where the operator runs `sudo decnet init` against
a source checkout with a differently-named venv (.venv, .311, .312),
every decnet-*.service looped forever in auto-restart with:
Failed at step EXEC spawning .../venv/bin/decnet: No such file or
directory
Templates now use {{ venv_dir }} as an independent Jinja2 var. `decnet
init` adds --venv-dir (explicit override), otherwise autodetects:
1. $VIRTUAL_ENV (only when inside --install-dir, so a user-home venv
never gets baked into a root-owned unit),
2. {install_dir}/venv (production default; what enroll_bootstrap
creates),
3. {install_dir}/{.venv,.311,.312,.313} (common dev conventions).
Init aborts before any file writes if nothing resolves — an
operator-friendly error beats journalctl spam on every unit restart.
python3-venv doesn't set a persistent system variable — $VIRTUAL_ENV
lives in the activated shell only — so this has to be decided + baked
in at init time; there's no way for systemd to "inherit the current
venv" at unit start.
Test mode (--prefix) skips venv validation so the existing test suite
doesn't need to stub up a venv tree per case.
50 lines
1.6 KiB
Django/Jinja
50 lines
1.6 KiB
Django/Jinja
[Unit]
|
|
Description=DECNET Self-Updater (mTLS)
|
|
Documentation=https://git.resacachile.cl/anti/DECNET/wiki/Remote-Updates
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
# Deliberately NOT After=decnet-agent.service — the updater must come up even
|
|
# when the agent is broken, since that is exactly when it is most useful.
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=decnet
|
|
Group=decnet
|
|
WorkingDirectory={{ install_dir }}
|
|
EnvironmentFile=-{{ install_dir }}/.env.local
|
|
ExecStart={{ venv_dir }}/bin/decnet updater \
|
|
--host 0.0.0.0 --port 8766 \
|
|
--updater-dir /etc/decnet/updater \
|
|
--install-dir {{ install_dir }} \
|
|
--agent-dir /etc/decnet/agent
|
|
|
|
# The updater SIGTERMs the agent and spawns a new one. Same User=decnet means
|
|
# signalling is allowed without CAP_KILL. It does not need NET_ADMIN/NET_RAW
|
|
# itself — the new agent process picks those up from decnet-agent.service when
|
|
# systemd restarts it (or from the agent's own unit's AmbientCapabilities when
|
|
# spawned by the updater as a direct child).
|
|
CapabilityBoundingSet=
|
|
AmbientCapabilities=
|
|
|
|
# Security Hardening
|
|
NoNewPrivileges=yes
|
|
ProtectSystem=full
|
|
ProtectHome=read-only
|
|
PrivateTmp=yes
|
|
ProtectKernelTunables=yes
|
|
ProtectKernelModules=yes
|
|
ProtectControlGroups=yes
|
|
RestrictSUIDSGID=yes
|
|
LockPersonality=yes
|
|
# Writes release slots, pip installs into venv, manages agent.pid.
|
|
ReadWritePaths={{ install_dir }} /var/log/decnet
|
|
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
# Self-update replaces the process image via os.execv; the new binary answers
|
|
# /health within 30 s. Give it headroom before systemd's own termination.
|
|
TimeoutStopSec=30
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|