postgresql_server: dnf -> package, with_item changes
This commit is contained in:
parent
7b165b6577
commit
65fc4a4ecc
1 changed files with 16 additions and 14 deletions
|
@ -3,8 +3,9 @@
|
|||
# Setup postgresql server.
|
||||
#
|
||||
- name: install postgresql server packages (yum)
|
||||
package: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-plpython
|
||||
|
@ -16,8 +17,9 @@
|
|||
- postgresql
|
||||
|
||||
- name: install postgresql server packages (dnf)
|
||||
dnf: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-plpython
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue