mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
16 lines
531 B
Text
16 lines
531 B
Text
|
[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_debian %}
|
||
|
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
|