mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
15 lines
532 B
Django/Jinja
15 lines
532 B
Django/Jinja
[Unit]
|
|
Description=Provides the Calibre Book Server
|
|
After=syslog.target network.target local-fs.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
PIDFile=/var/run/calibre.pid
|
|
{% if is_debuntu %}
|
|
ExecStart=/usr/bin/calibre-server --daemonize --pidfile=/var/run/calibre.pid --port={{ calibre_port }} --with-library={{ calibre_dbpath }}
|
|
{% else %}
|
|
ExecStart=/bin/calibre-server --daemonize --pidfile=/var/run/calibre.pid --port={{ calibre_port }} --with-library={{ calibre_dbpath }}
|
|
{% endif %}
|
|
[Install]
|
|
TimeoutStartSec=900
|
|
WantedBy=multi-user.target
|