1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Lokole: install pkg python3-bcrypt (instead of bcrypt)

This commit is contained in:
A Holt 2019-10-14 15:06:08 -04:00 committed by GitHub
parent 42b330b613
commit 80c75fd6f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# Lokole PDF (User's Guide) gets copied for offline use (http://box/info) here: # Lokole PDF (User's Guide) gets copied for offline use (http://box/info) here:
# https://github.com/iiab/iiab/blob/master/roles/httpd/templates/refresh-wiki-docs.sh#L47 # https://github.com/iiab/iiab/blob/master/roles/httpd/templates/refresh-wiki-docs.sh#L47
- name: "Install 7 packages for Lokole: python3, python3-pip, python3-venv, python3-dev, libffi-dev, libssl-dev, bcrypt" - name: "Install 7 packages for Lokole: python3, python3-pip, python3-venv, python3-dev, libffi-dev, libssl-dev, python3-bcrypt"
apt: apt:
name: name:
- python3 - python3
@ -10,7 +10,8 @@
- python3-dev - python3-dev
- libffi-dev - libffi-dev
- libssl-dev - libssl-dev
- bcrypt #- bcrypt does not exist on Ubuntu 19.10
- python3-bcrypt # 2019-10-14: should work across modern Linux OS's
state: present state: present
tags: tags:
- install - install