From: Alex Suykov Date: Sat, 23 May 2015 10:07:42 +0000 (+0300) Subject: squid: systemd support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8aa3d51667b77e3f6be6c178801ee9be0063a12;p=buildroot.git squid: systemd support squid comes with a .service file, but does not install it. [Thomas: use relative path for symlink instead of absolute path.] Signed-off-by: Alex Suykov Signed-off-by: Thomas Petazzoni --- diff --git a/package/squid/squid.mk b/package/squid/squid.mk index 3d0f4d8347..adc09e5b21 100644 --- a/package/squid/squid.mk +++ b/package/squid/squid.mk @@ -81,4 +81,12 @@ define SQUID_INSTALL_INIT_SYSV $(TARGET_DIR)/etc/init.d/S97squid endef +define SQUID_INSTALL_INIT_SYSTEMD + $(INSTALL) -D -m 0644 $(@D)/tools/squid.service \ + $(TARGET_DIR)/usr/lib/systemd/system/squid.service + mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants + ln -sf ../../../..//usr/lib/systemd/system/squid.service \ + $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/squid.service +endef + $(eval $(autotools-package))