Created
August 27, 2015 08:06
-
-
Save Finkregh/4178f1588970f1530a13 to your computer and use it in GitHub Desktop.
systemd-service file for lsyncd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Live Syncing (Mirror) Daemon | |
After=network.target | |
[Service] | |
Restart=always | |
Type=simple | |
Nice=19 | |
#EnvironmentFile=-/etc/default/lsyncd | |
#ExecStart=/usr/bin/sh -c 'eval `/usr/bin/lsyncd -nodaemon $LSYNCD_OPTIONS /etc/lsyncd/lsyncd.conf.lua`' | |
ExecStart=/usr/bin/lsyncd -nodaemon -pidfile /run/lsyncd.pid /etc/lsyncd/lsyncd.conf.lua | |
ExecReload=/bin/kill -HUP $MAINPID | |
PIDFile=/run/lsyncd.pid | |
[Install] | |
WantedBy=multi-user.target |
It seems that all pid options are not needed because of the nodaemon option. systemd should take of a process management when using "Type=simple".
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good, thank you.