From 64a557ab85799f74c5346d82883817732d8a5ea6 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Fri, 13 Nov 2020 18:25:01 +0100 Subject: [PATCH] matirx: use list instead of with_items --- roles/matrix/tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/matrix/tasks/main.yml b/roles/matrix/tasks/main.yml index 241ebde..dbcfefb 100644 --- a/roles/matrix/tasks/main.yml +++ b/roles/matrix/tasks/main.yml @@ -10,11 +10,11 @@ apt_repository: repo="deb https://packages.matrix.org/debian/ {{ ansible_distribution_release }} main" - name: Install matrix - apt: name={{ item }} - with_items: - - matrix-synapse-py3 - - postgresql - - python-psycopg2 + apt: + name: + - matrix-synapse-py3 + - postgresql + - python-psycopg2 - name: Configure PostgreSQL database postgresql_db: name={{ matrix_dbname }} lc_collate=C lc_ctype=C template=template0