15 lines
417 B
Plaintext
15 lines
417 B
Plaintext
|
{%- from "syncthing/map.jinja" import syncthing with context -%}
|
||
|
[Unit]
|
||
|
Description=Syncthing - Open Source Continuous File Synchronization for %I
|
||
|
Documentation=man:syncthing(1)
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=%i
|
||
|
ExecStart={{ syncthing.install_dir }}/syncthing/syncthing -no-browser -no-restart -logflags=0
|
||
|
Restart=on-failure
|
||
|
SuccessExitStatus=3 4
|
||
|
RestartForceExitStatus=3 4
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|