From 27ae97425280c5d9a9069625401f44f2908af1e6 Mon Sep 17 00:00:00 2001 From: meisterfischy Date: Tue, 16 Aug 2022 13:55:20 +0200 Subject: Fixed Calibreweb The pip package is now installed as the local calibre user, so that the webinterface updater (hopefully) works. --- roles/calibre/tasks/main.yml | 1 + roles/calibre/templates/cps.service.j2 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/calibre/tasks/main.yml b/roles/calibre/tasks/main.yml index d3b0d06..58ae99a 100644 --- a/roles/calibre/tasks/main.yml +++ b/roles/calibre/tasks/main.yml @@ -47,6 +47,7 @@ pip: name: calibreweb[{{ features | join(",") }}] become: true + become_user: calibre - name: Create systemd unit template: diff --git a/roles/calibre/templates/cps.service.j2 b/roles/calibre/templates/cps.service.j2 index 005297d..98e58c2 100644 --- a/roles/calibre/templates/cps.service.j2 +++ b/roles/calibre/templates/cps.service.j2 @@ -5,7 +5,7 @@ Description=Calibre-Web 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' +ExecStart=/opt/calibre/.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 %} -- cgit v1.2.3