bk-dss: change apt to new syntax

This commit is contained in:
Markus 2020-10-05 08:31:16 +02:00
parent c4101bc585
commit 38bd0328b7
1 changed files with 11 additions and 11 deletions

View File

@ -1,17 +1,17 @@
---
- name: Install dependencies
apt: name={{ item }}
with_items:
- git
- python3-flask
- python3-flaskext.wtf
- python3-passlib
- python3-pyldap
- python3-redis
- redis-server
- uwsgi
- uwsgi-plugin-python3
apt:
name:
- git
- python3-flask
- python3-flaskext.wtf
- python3-passlib
- python3-pyldap
- python3-redis
- redis-server
- uwsgi
- uwsgi-plugin-python3
- name: Install bk-dss
git: repo=https://git.binary-kitchen.de/moepman/bk-dss.git dest=/opt/bk-dss depth=1 version={{ dss_version }}