plus-plus-service: dnf -> package, with_item changes

This commit is contained in:
Karsten Hopp
2019-06-11 17:01:57 +02:00
committed by pingou
parent 26e99757cc
commit 585ca39340

View File

@@ -2,7 +2,7 @@
# Configuration for the plus-plus-service webapp
- name: Ensure mod_wsgi is not installed since we're using python3
dnf: pkg=mod_wsgi state=absent
package: pkg=mod_wsgi state=absent
tags:
- pps
- packages
@@ -14,11 +14,12 @@
- config
- name: install needed packages
dnf: pkg={{ item }} state=present
with_items:
- plus-plus-service
- python3-mod_wsgi
- python3-psycopg2
package:
state: present
name:
- plus-plus-service
- python3-mod_wsgi
- python3-psycopg2
tags:
- pps
- packages