1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #2286 from jvonau/fixes

Fixes [Python 3 venv for Calibre-Web, network/tasks/debian.yml syntax error]
This commit is contained in:
A Holt 2020-03-09 13:58:31 -04:00 committed by GitHub
commit 2930acf46d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 5 deletions

View file

@ -1,6 +1,8 @@
- name: "Install ImageMagick package: imagemagick"
package:
name: imagemagick
name:
- imagemagick
- python3-venv
state: present
- name: Allow ImageMagick to read PDFs, per /etc/ImageMagick-6/policy.xml, to create book cover thumbnails

View file

@ -41,7 +41,7 @@
template:
dest: /etc/network/interfaces.d/iiab
src: network/systemd.j2
when: not is_raspbian (iiab_lan_iface == "br0" or wan_ip != "dhcp" or gui_static_wan_ip == "undefined")
when: not is_raspbian and (iiab_lan_iface == "br0" or wan_ip != "dhcp" or gui_static_wan_ip == "undefined")
- name: Copy the bridge script for RPi
template:

View file

@ -78,7 +78,7 @@ elif [ -f /etc/debian_version ]; then # Includes Debian, Ubuntu & Raspbian
echo -e "https://github.com/iiab/iiab/tree/master/scripts/ansible.md\n"
apt update
apt -y --allow-downgrades install ansible python3-pymysql python3-psycopg2 \
python3-passlib python3-pip python3-setuptools virtualenv
python3-passlib python3-pip python3-setuptools python3-venv virtualenv
echo -e "\nSUCCESS: verify Ansible using 'ansible --version' and/or 'apt -a list ansible'\n\n"

View file

@ -78,7 +78,7 @@ elif [ -f /etc/debian_version ]; then # Includes Debian, Ubuntu & Raspbian
echo -e "https://github.com/iiab/iiab/tree/master/scripts/ansible.md\n"
apt update
apt -y --allow-downgrades install ansible python3-pymysql python3-psycopg2 \
python3-passlib python3-pip python3-setuptools virtualenv
python3-passlib python3-pip python3-setuptools python3-venv virtualenv
echo -e "\nSUCCESS: verify Ansible using 'ansible --version' and/or 'apt -a list ansible'\n\n"

View file

@ -78,7 +78,7 @@ elif [ -f /etc/debian_version ]; then # Includes Debian, Ubuntu & Raspbian
echo -e "https://github.com/iiab/iiab/tree/master/scripts/ansible.md\n"
apt update
apt -y --allow-downgrades install ansible python3-pymysql python3-psycopg2 \
python3-passlib python3-pip python3-setuptools virtualenv
python3-passlib python3-pip python3-setuptools python3-venv virtualenv
echo -e "\nSUCCESS: verify Ansible using 'ansible --version' and/or 'apt -a list ansible'\n\n"