Created Systemd (markdown)

oooo-ps 2025-08-05 23:11:55 +03:00
parent e244105736
commit 798e00e505

19
Systemd.md Normal file

@ -0,0 +1,19 @@
``` /etc/systemd/system/btracker.service
[Unit]
After=network.target
Wants=network.target
[Service]
Type=simple
User=btracker
Group=btracker
ExecStart=/usr/local/bin/btracker\
--storage=/path/to/aquatic-crawler/preload\
--link=http://[302:68d0:f0d5:b88d::fdb]\
--tracker=udp://[302:68d0:f0d5:b88d::fdb]:6969
StandardOutput=file:/path/to/debug.log
StandardError=file:/path/to/error.log
[Install]
WantedBy=multi-user.target
```