1234567891011121314151617 |
- # /usr/lib/systemd/system/lsyncd.service
- [Unit]
- Description=Live Syncing (Mirror) Daemon
- Documentation=man:lsyncd(1) https://axkibe.github.io/lsyncd/
- After=network.target
- [Service]
- Type=simple
- # EnvironmentFile=-/etc/sysconfig/lsyncd
- # Environment=LSYNCD_OPTIONS="${LSYNCD_OPTIONS:-${HOME}/lsyncd/lsyncd.conf}"
- Environment=LSYNCD_OPTIONS=/home/adam/lsyncd/lsyncd.conf
- ExecStart=/usr/bin/lsyncd -nodaemon $LSYNCD_OPTIONS
- Restart=on-failure
- [Install]
- WantedBy=multi-user.target
|