blob: a62d0b892f0544603ac39bd33433c12b5376b7c4 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# This systemd script was made to be used in Ubuntu 18.04 LTS
# Check your distro and make the appropriate changes if needed
[Unit]
Description=BitBot Service
Wants=network-online.target
After=network-online.target
[Service]
# change any of the 3 following lines as applicable
User=bitbot
Group=bitbot
WorkingDirectory=/opt/bitbot/
ExecStart=/usr/bin/env python3 bitbotd
ExecStop=/usr/bin/env python3 bitbotctl stop
ExecReload=/usr/bin/env python3 bitbotctl reload
Restart=always
[Install]
WantedBy=multi-user.target
|