Unterhaltung
Nachrichten
-
Is there a trivial way to tell a systemd unit to not run until rc.local has been run? I guess rc.local is run by some #systemd unit that I can use as a prerequisite?
-
Looks like this is what I need:
[Unit]
After=rc-local.service -
Confirmed: works!
Context: I run the guix and nix daemons using s6, but s6 is in nix, and /nix is mounted by rc.local. Now systemd can properly run s6, and my daemons are running with no manual massage necessary.
-