core: consider SIGTERM as a clean exit status for initrd-switch-root.service (#4713)

Since commit 1f0958f640, systemd considers SIGTERM for short-running
services (aka Type=oneshot) as a failure.

This can be an issue with initrd-switch-root.service as the command run by this
service (in order to switch to the new rootfs) may still be running when
systemd does the switch.

However PID1 sends SIGTERM to all remaining processes right before
switching and initrd-switch-root.service can be one of those.

After systemd is reexecuted and its previous state is deserialized, systemd
notices that initrd-switch-root.service was killed with SIGTERM and considers
this as a failure which leads to the emergency shell.

To prevent this, this patch teaches systemd to consider a SIGTERM exit as a
clean one for this service.

It also removes "KillMode=none" since this is pretty useless as the service is
never stopped by systemd but it either exits normally or it's killed by a
SIGTERM as described previously.
This commit is contained in:
Franck Bui 2016-11-23 16:31:24 +01:00 committed by Lennart Poettering
parent 3d4cf7de48
commit a4021390fe
1 changed files with 7 additions and 1 deletions

View File

@ -17,4 +17,10 @@ AllowIsolate=yes
Type=oneshot
# we have to use "--force" here, otherwise systemd would umount /run
ExecStart=@rootbindir@/systemctl --no-block --force switch-root /sysroot
KillMode=none
# Just before switching to the new rootfs, systemd might send us a TERM signal
# depending on how fast we are to execute the main command and exit. If we get
# the SIGTERM signal that simply means that we succeed but haven't got enough
# time to exit properly. Since systemd considers SIGTERM as a failure for
# short-running process (aka Type=oneshot), instruct it to ignore this case.
SuccessExitStatus=SIGTERM