boinc: replace systemd script

Remove buildroot systemd script to use the script embedded by boinc
since version 7.9.1.
Set BOINC_USERS to be able to use this script

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2018-04-28 16:24:17 +02:00 committed by Thomas Petazzoni
parent 36f2d55eff
commit b14aea4eb1
2 changed files with 4 additions and 12 deletions

View file

@ -1,10 +0,0 @@
[Unit]
Description=BOINC client
After=network.target
[Service]
ExecStart=/usr/bin/boinc_client
Restart=always
[Install]
WantedBy=multi-user.target

View file

@ -44,14 +44,16 @@ endef
BOINC_POST_INSTALL_TARGET_HOOKS += BOINC_REMOVE_UNNEEDED_FILE
define BOINC_USERS
boinc -1 boinc -1 * /var/lib/boinc - BOINC user
endef
define BOINC_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/boinc/S99boinc-client \
$(TARGET_DIR)/etc/init.d/S99boinc-client
endef
define BOINC_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 package/boinc/boinc-client.service \
$(TARGET_DIR)/usr/lib/systemd/system/boinc-client.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -sf ../../../../usr/lib/systemd/system/boinc-client.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/boinc-client.service