re2o-service: install Python dependencies
This commit is contained in:
parent
24a6063a91
commit
4f224ee817
1 changed files with 9 additions and 1 deletions
|
@ -2,7 +2,15 @@
|
|||
# Create service user
|
||||
- include_tasks: service_user.yml
|
||||
|
||||
# python3-iso8601 python3-jinja2
|
||||
- name: Install Python dependencies
|
||||
apt:
|
||||
name:
|
||||
- python3-iso8601
|
||||
- python3-jinja2
|
||||
update_cache: true
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
||||
|
||||
- name: "Clone re2o {{ service_name }} project"
|
||||
git:
|
||||
|
|
Loading…
Reference in a new issue