From 953c158868831ea81cc5141c824b5db0be7c9347 Mon Sep 17 00:00:00 2001 From: Kai Krakow Date: Tue, 9 Jan 2018 01:24:35 +0100 Subject: [PATCH] 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 --- scripts/beesd@.service.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/beesd@.service.in b/scripts/beesd@.service.in index 55df99c..185620d 100644 --- a/scripts/beesd@.service.in +++ b/scripts/beesd@.service.in @@ -21,4 +21,4 @@ CPUAccounting=true MemoryAccounting=true [Install] -WantedBy=local-fs.target +WantedBy=basic.target