Some unit keys don't need to restart the service to make them effective. Reduce the amount of service restarts by ignoring these keys
3.1 KiB
Unit handling
To figure out what units need to be started/stopped/restarted/reloaded, the
script first checks the current state of the system, similar to what systemctl list-units shows. For each of the units, the script goes through the following
checks:
-
Is the unit file still in the new system? If not, stop the service unless it sets
X-StopOnRemovalin the[Unit]section tofalse. -
Is it a
.targetunit? If so, start it unless it setsRefuseManualStartin the[Unit]section totrueorX-OnlyManualStartin the[Unit]section totrue. Also stop the unit again unless it setsX-StopOnReconfigurationtofalse. -
Are the contents of the unit files different? They are compared by parsing them and comparing their contents. If they are different but only
X-Reload-Triggersin the[Unit]section is changed, reload the unit. The NixOS module system allows setting these triggers with the option systemd.services.<name>.reloadTriggers. There are some additional keys in the[Unit]section that are ignored as well. If the unit files differ in any way, the following actions are performed:-
.pathand.sliceunits are ignored. There is no need to restart them since changes in their values are applied by systemd when systemd is reloaded. -
.mountunits are reloaded. These mostly come from the/etc/fstabparser. -
.socketunits are currently ignored. This is to be fixed at a later point. -
The rest of the units (mostly
.serviceunits) are then reloaded ifX-ReloadIfChangedin the[Service]section is set totrue(exposed via systemd.services.<name>.reloadIfChanged). -
If the reload flag is not set, some more flags decide if the unit is skipped. These flags are
X-RestartIfChangedin the[Service]section (exposed via systemd.services.<name>.restartIfChanged),RefuseManualStopin the[Unit]section, andX-OnlyManualStartin the[Unit]section. -
Further behavior depends on the unit having
X-StopIfChangedin the[Service]section set totrue(exposed via systemd.services.<name>.stopIfChanged). This is set totrueby default and must be explicitly turned off if not wanted. If the flag is enabled, the unit is stopped and then started. If not, the unit is restarted. The goal of the flag is to make sure that the new unit never runs in the old environment which is still in place before the activation script is run. This behavior is different when the service is socket-activated, as outlined in the following steps. -
The last thing that is taken into account is whether the unit is a service and socket-activated. If
X-StopIfChangedis not set, the service is restarted with the others. If it is set, both the service and the socket are stopped and the socket is started, leaving socket activation to start the service when it's needed.
-