aboutsummaryrefslogtreecommitdiff
path: root/roles/calibre/templates/cps.service.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/calibre/templates/cps.service.j2')
-rw-r--r--roles/calibre/templates/cps.service.j214
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/calibre/templates/cps.service.j2 b/roles/calibre/templates/cps.service.j2
new file mode 100644
index 0000000..005297d
--- /dev/null
+++ b/roles/calibre/templates/cps.service.j2
@@ -0,0 +1,14 @@
+[Unit]
+Description=Calibre-Web
+
+[Service]
+Type=simple
+User=calibre
+{% if ssl == true %}
+ExecStart=/usr/local/bin/cps -c '/etc/ssl/certs/{{ ansible_facts.fqdn }}.pem' -k '/etc/ssl/private/{{ ansible_facts.fqdn }}.key'
+{% else %}
+ExecStart=/usr/local/bin/cps
+{% endif %}
+
+[Install]
+WantedBy=multi-user.target