How Debian managed the systemd transition
How Debian managed the systemd transition
Posted Sep 16, 2015 22:11 UTC (Wed) by luto (subscriber, #39314)In reply to: How Debian managed the systemd transition by airlied
Parent article: How Debian managed the systemd transition
On Fedora, /etc/init is a symlink to systemd, so systemd could fork and exec dbus-daemon (and even remember its PID for tracking purposes). But /etc/init could also be a tiny script like:
#!/bin/sh
/path/to/dbus-daemon --fork
exec /usr/lib/systemd/systemd
It may be traditional for initramfs code to delete itself and make sure that no references to the old initramfs are left before execing the real init, but it's certainly not a requirement.