From 526dc22fb86a5678469adc7e83d13d3b0da2618f Mon Sep 17 00:00:00 2001 From: Blondel MONDESIR Date: Tue, 1 Oct 2024 16:39:22 -0400 Subject: [PATCH 1/3] Make calibre-web role install cryptography --- roles/calibre-web/tasks/install.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index 1d738a8df..dae058820 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -24,6 +24,7 @@ - name: "Install packages: imagemagick, python3-netifaces" package: name: + - python3-cryptography - imagemagick - python3-netifaces state: present From 1f75537309cce53f5eeeef0801431c5c56685843 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 1 Oct 2024 17:59:46 -0400 Subject: [PATCH 2/3] calibre-web/tasks/install.yml: Explain python3-cryptography --- roles/calibre-web/tasks/install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index dae058820..3ed72cc9b 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -21,11 +21,11 @@ # Official upstream instructions: # apt install python3-pip python3-venv # https://github.com/janeczku/calibre-web/wiki/Manual-installation -- name: "Install packages: imagemagick, python3-netifaces" +- name: "Install packages: imagemagick, python3-cryptography, python3-netifaces" package: name: - - python3-cryptography - imagemagick + - python3-cryptography # Required on Raspberry Pi OS - python3-netifaces state: present From 23e92b585322c67696a5fef67179212c096f5b04 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 1 Oct 2024 18:52:20 -0400 Subject: [PATCH 3/3] calibre-web/tasks/install.yml: Mention iiab/calibre-web#260 --- roles/calibre-web/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index 3ed72cc9b..5e1f66933 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -25,7 +25,7 @@ package: name: - imagemagick - - python3-cryptography # Required on Raspberry Pi OS + - python3-cryptography # Required on Raspberry Pi OS (see iiab/calibre-web#260) - python3-netifaces state: present