-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1bd4f3
commit 2a1f900
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |