Varia library working group XPPL.
https://gitea.xpub.nl/XPUB/XPPL
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
391 B
24 lines
391 B
6 years ago
|
---
|
||
|
|
||
|
- name: Ensure python3-pip package is installed.
|
||
|
become: true
|
||
|
apt:
|
||
|
name: python3-pip
|
||
|
state: present
|
||
|
|
||
|
- name: Ensure Pipenv is installed.
|
||
|
become: true
|
||
|
pip:
|
||
|
name: pipenv
|
||
|
executable: pip3
|
||
|
|
||
|
- name: Run a Pipenv package sync.
|
||
|
become: true
|
||
|
become_user: xppl
|
||
|
environment:
|
||
|
LANG: C.UTF-8
|
||
|
LC_ALL: C.UTF-8
|
||
|
command: pipenv sync
|
||
|
args:
|
||
|
chdir: /var/xppl/
|