diff options
Diffstat (limited to 'dotfiles/config/systemd/user/default.target.wants/syncthing.service')
-rw-r--r-- | dotfiles/config/systemd/user/default.target.wants/syncthing.service | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dotfiles/config/systemd/user/default.target.wants/syncthing.service b/dotfiles/config/systemd/user/default.target.wants/syncthing.service new file mode 100644 index 0000000..9b7ed80 --- /dev/null +++ b/dotfiles/config/systemd/user/default.target.wants/syncthing.service @@ -0,0 +1,17 @@ +[Unit] +Description=Syncthing - Open Source Continuous File Synchronization +Documentation=man:syncthing(1) + +[Service] +ExecStart=/usr/bin/syncthing -no-browser -no-restart -logflags=0 +Restart=on-failure +SuccessExitStatus=3 4 +RestartForceExitStatus=3 4 + +# Hardening +SystemCallArchitectures=native +MemoryDenyWriteExecute=true +NoNewPrivileges=true + +[Install] +WantedBy=default.target |