17 lines
411 B
Text
17 lines
411 B
Text
# 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]
|
|
Description=feuille - a fast, dead-simple socket-based pastebin
|
|
After=syslog.target network.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
ExecStart=/usr/local/bin/feuille -U https://my.paste.bin
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|