inadyn: systemd support

Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Alex Suykov 2015-05-23 13:03:45 +03:00 committed by Thomas Petazzoni
parent b52d96ab4e
commit 0719dd240f
2 changed files with 18 additions and 0 deletions

View File

@ -30,4 +30,12 @@ define INADYN_INSTALL_INIT_SYSV
$(TARGET_DIR)/etc/init.d/S70inadyn
endef
define INADYN_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 package/inadyn/inadyn.service \
$(TARGET_DIR)/usr/lib/systemd/system/inadyn.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -sf /usr/lib/systemd/system/inadyn.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/inadyn.service
endef
$(eval $(autotools-package))

View File

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