From 68c01a04cd6268c1dee66678c258cd4c240d5bb1 Mon Sep 17 00:00:00 2001 From: binary Date: Tue, 30 Jun 2020 19:24:22 +0200 Subject: Cleanup for public release --- roles/setup_syncthing/templates/syncthing.service | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 roles/setup_syncthing/templates/syncthing.service (limited to 'roles/setup_syncthing/templates/syncthing.service') diff --git a/roles/setup_syncthing/templates/syncthing.service b/roles/setup_syncthing/templates/syncthing.service new file mode 100644 index 0000000..fe4c429 --- /dev/null +++ b/roles/setup_syncthing/templates/syncthing.service @@ -0,0 +1,25 @@ + +# =========================================================================== # +# _ __ __ __ _ +# __ ______ (_) /_ _______ ______ _____/ /_/ /_ (_)___ ____ _ +# / / / / __ \/ / __/ / ___/ / / / __ \/ ___/ __/ __ \/ / __ \/ __ `/ +# / /_/ / / / / / /__ (__ ) /_/ / / / / /__/ /_/ / / / / / / / /_/ / +# \__,_/_/ /_/_/\__(_) /____/\__, /_/ /_/\___/\__/_/ /_/_/_/ /_/\__, / +# /____/ /____/ +# +# =========================================================================== # + +[Unit] +Description=Synchronization service for files + +[Service] +Type=simple +User={{ syncthing_user }} +Group={{ syncthing_group }} +WorkingDirectory={{ syncthing_files_directory }} +ExecStart={{ syncthing_bin_directory }}/syncthing +ExecStop=/bin/kill -s HUP $MAINPID +RuntimeDirectoryMode=0700 + +[Install] +WantedBy=default.target -- cgit v1.2.3