aboutsummaryrefslogtreecommitdiff
path: root/src/system/files/systemd/user/syncthing.service
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2025-06-14 10:13:07 +0530
committerAaditya Dhruv <[email protected]>2025-06-14 10:13:07 +0530
commit5f0f24a52d9175ab638b3d1a77454e65fad88248 (patch)
tree03159fd6a3a69e6fc56ec33258964e3bffabffc1 /src/system/files/systemd/user/syncthing.service
parentbd8919afb109efa0a92def766aca81f1e2e146fa (diff)
Update system, packages and playbooks, add vault
Diffstat (limited to 'src/system/files/systemd/user/syncthing.service')
-rw-r--r--src/system/files/systemd/user/syncthing.service24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/system/files/systemd/user/syncthing.service b/src/system/files/systemd/user/syncthing.service
new file mode 100644
index 0000000..18078d0
--- /dev/null
+++ b/src/system/files/systemd/user/syncthing.service
@@ -0,0 +1,24 @@
+[Unit]
+Description=Syncthing - Open Source Continuous File Synchronization
+Documentation=man:syncthing(1)
+StartLimitIntervalSec=60
+StartLimitBurst=4
+
+[Service]
+ExecStart=/usr/bin/syncthing serve --no-browser --no-restart --logflags=0
+Restart=on-failure
+RestartSec=1
+SuccessExitStatus=3 4
+RestartForceExitStatus=3 4
+
+# Hardening
+SystemCallArchitectures=native
+MemoryDenyWriteExecute=true
+NoNewPrivileges=true
+
+# Elevated permissions to sync ownership (disabled by default),
+# see https://docs.syncthing.net/advanced/folder-sync-ownership
+#AmbientCapabilities=CAP_CHOWN CAP_FOWNER
+
+[Install]
+WantedBy=default.target