This repository has been archived on 2023-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
feuille/service/systemd

17 lines
411 B
Text
Raw Normal View History

2022-11-29 11:45:59 +01:00
# set the flags you'd like to use in ExecStart
# $ mv ./systemd /etc/systemd/system/feuille.service
# $ systemctl daemon-reload
# $ systemctl enable feuille
# $ systemctl start feuille
[Unit]
2022-11-29 11:48:58 +01:00
Description=feuille - a fast, dead-simple socket-based pastebin
2022-11-29 11:45:59 +01:00
After=syslog.target network.target
[Service]
Type=forking
ExecStart=/usr/local/bin/feuille -U https://my.paste.bin
[Install]
WantedBy=multi-user.target