From 3d6a75c53d10ea7e9610c0a84168581bb5590e82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kalu=C5=BEa?= Date: Thu, 30 Aug 2018 13:02:50 +0000 Subject: [PATCH] Install python3 versions of dependencies in ODCS base role. --- roles/odcs/base/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/odcs/base/tasks/main.yml b/roles/odcs/base/tasks/main.yml index 48b8932289..198e904ec1 100644 --- a/roles/odcs/base/tasks/main.yml +++ b/roles/odcs/base/tasks/main.yml @@ -5,8 +5,8 @@ pkg: "{{ item }}" state: present with_items: - - python-psycopg2 - - python2-odcs-common + - python3-psycopg2 + - python3-odcs-common - odcs tags: - odcs @@ -16,7 +16,7 @@ pkg: "{{ item }}" state: latest with_items: - - python2-odcs-common + - python3-odcs-common - odcs when: odcs_upgrade tags: @@ -30,7 +30,7 @@ state: present with_items: - mod_auth_openidc - - mod_wsgi + - python3-mod_wsgi when: inventory_hostname.startswith('odcs-frontend') tags: - odcs