ptpd: systemd support
[Thomas: - use relative symbolic link instead of absolute one - remove the -S option, since redirecting stdout is not needed, it's already taken care of by systemd. Suggested by Maxime Hadjinlian.] Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
727c23cf05
commit
9ad7b47c5e
@ -22,4 +22,12 @@ define PTPD_INSTALL_INIT_SYSV
|
||||
$(TARGET_DIR)/etc/init.d/S65ptpd
|
||||
endef
|
||||
|
||||
define PTPD_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/ptpd/ptpd.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/ptpd.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -sf ../../../../usr/lib/systemd/system/ptpd.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ptpd.service
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
|
10
package/ptpd/ptpd.service
Normal file
10
package/ptpd/ptpd.service
Normal file
@ -0,0 +1,10 @@
|
||||
[Unit]
|
||||
Description=Precision Time Protocol daemon
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/ptpd -c
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user