1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

systemd: Don't start in system-update.target

Due to bees installing into the local-fs.target, bees also runs during
system-update.target. This should not be done, system-update.target is
meant as an isolated bootup mode for applying updates offline, that is:
Only essential services are running.

Fix this by making it WantedBy basic.target instead. According to
system-update.target and "man bootup", system-update.target pulls in
sysinit.target, as does basic.target. So essentially, basic.target is
not part of the system-update.target transaction.

Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
Kai Krakow 2018-01-09 01:24:35 +01:00
parent f7f99f52b5
commit 953c158868

View File

@ -21,4 +21,4 @@ CPUAccounting=true
MemoryAccounting=true
[Install]
WantedBy=local-fs.target
WantedBy=basic.target