diff --git a/template.service b/template.service new file mode 100644 index 0000000..99e881d --- /dev/null +++ b/template.service @@ -0,0 +1,32 @@ +# +# Author: Hari Sekhon +# Date: 2024-10-09 02:34:03 +0300 (Wed, 09 Oct 2024) +# +# vim:ts=4:sts=4:sw=4:et +# +# https///github.com/HariSekhon/Templates +# +# License: see accompanying Hari Sekhon LICENSE file +# +# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish +# +# https://www.linkedin.com/in/HariSekhon +# + +# ============================================================================ # +# S y s t e m d S e r v i c e +# ============================================================================ # + +[Unit] +Description=[% NAME %] +Wants=network-online.target +After=network-online.target + +[Service] +User=nobody +ExecStart=/usr/local/bin/[% NAME %] +Restart=on-failure +RestartSec=5s + +[Install] +WantedBy=multi-user.target