From e56a1388b5b1aace02a8d15c1447d8c0207e92d6 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Thu, 3 Sep 2020 21:32:59 +0100 Subject: [PATCH] add example systemd service --- data/services/jf-accounts.service | 8 -------- jfa-go.service | 11 +++++++++++ 2 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 data/services/jf-accounts.service create mode 100644 jfa-go.service diff --git a/data/services/jf-accounts.service b/data/services/jf-accounts.service deleted file mode 100644 index 6c937c4..0000000 --- a/data/services/jf-accounts.service +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Description=A basic account management system for Jellyfin. - -[Service] -ExecStart={executable} - -[Install] -WantedBy=default.target diff --git a/jfa-go.service b/jfa-go.service new file mode 100644 index 0000000..8d50f27 --- /dev/null +++ b/jfa-go.service @@ -0,0 +1,11 @@ +# Systemd service file for jfa-go. Install to ~/.config/systemd/user. + +[Unit] +Description=A web app for managing users on Jellyfin + +[Service] +# Modify this to the path to your executable, if necessary. +ExecStart=/opt/jfa-go/jfa-go + +[Install] +WantedBy=default.target