platypush/examples/systemd/platypush.service
Fabio Manganiello 02a3385638
Tweaked Platypush systemd service.
- A more informative Description
- `s/WantedBy=default.target/WantedBy=multi-user.target/`
- `redis.service` is a strong requirement
2024-05-20 13:02:36 +02:00

12 lines
238 B
Desktop File

[Unit]
Description=Platypush - A general-purpose platform for automation
After=network.target redis.service
Requires=redis.service
[Service]
ExecStart=/usr/bin/platypush
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target