Is there anything like ~/.config/systemd/user/
and systemctl --user start ...
for Upstart?
initctl --user ...
required UPSTART_SESSION
environment variable, looks like --user
here has different meaning from systemd
.
Is there anything like ~/.config/systemd/user/
and systemctl --user start ...
for Upstart?
initctl --user ...
required UPSTART_SESSION
environment variable, looks like --user
here has different meaning from systemd
.
It has indeed. upstart has multiple per-session instances of itself, one per login session per user. systemd has per-user instances of itself, one per user for that user in all contexts (and outwith any individual login session).
initctl
. – CameronNemo Aug 14 '18 at 02:58