initial commit

This commit is contained in:
aminnairi
2025-11-08 21:51:07 +01:00
parent 365d2c9b2f
commit 5c4b53d0f9
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
ensure_package_is_installed syncthing \
&& ensure_user_folder_present ~/.config/systemd/user \
&& synchronize_user_folder ./sources/syncthing/syncthing.service ~/.config/systemd/user \
&& ensure_user_service_active syncthing
+9
View File
@@ -0,0 +1,9 @@
[Unit]
Name=Syncthing
After=network.target
[Service]
ExecStart=/usr/bin/syncthing serve --no-browser --no-restart --no-upgrade
[Install]
WantedBy=default.target