fix systemd unit example

This commit is contained in:
yggverse 2025-02-25 19:26:50 +02:00
parent 058150d23d
commit 502a099103

View file

@ -49,13 +49,14 @@ pulsarss --source https://path/to/feed.rss --index index.gmi
# /etc/systemd/system/pulsarss.service # /etc/systemd/system/pulsarss.service
[Unit] [Unit]
After=network.target After=network-online.target
Wants=network-online.target
[Service] [Service]
Type=simple Type=simple
User=pulsarss User=pulsarss
Group=pulsarss Group=pulsarss
ExecStart=pulsarss -s https://path/to/feed.rss -i index.gmi ExecStart=/usr/local/bin/pulsarss -s https://path/to/feed.rss -i index.gmi
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target