blob: 9e9805b3f92c50f5be84e878bbf2e9369111df1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[Unit]
Description=lnd
Wants={{lnd_bitcoin_node}}.service
After={{lnd_bitcoin_node}}.service
[Service]
Type=notify
ExecStart=/usr/local/bin/lnd
ExecStop=/usr/local/bin/lncli stop
User={{lnd_user}}
Group={{lnd_user}}
Restart=on-failure
RestartSec=60
TimeoutStartSec=1200
TimeoutStopSec=3600
PrivateTmp=true
ProtectSystem=full
NoNewPrivileges=true
PrivateDevices=true
MemoryDenyWriteExecute=true
[Install]
WantedBy=multi-user.target
|