Skip to content

Instantly share code, notes, and snippets.

@xlbruce
Created August 14, 2018 13:36
Show Gist options
  • Save xlbruce/f3ac5ccf2bb4853f4fbf1ec6ca4c187b to your computer and use it in GitHub Desktop.
Save xlbruce/f3ac5ccf2bb4853f4fbf1ec6ca4c187b to your computer and use it in GitHub Desktop.
Systemd service template
[Unit]
Description=My Service Name
After=network.target
[Service]
Type=simple
User=<user>
Group=<group>
WorkingDirectory=/opt/app
ExecStart=/bin/ls -lh
ExecStop=/bin/kill -9 $MAINPID
SuccessExitStatus=0
TimeoutSec=300
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment