1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Update main.yml

This commit is contained in:
A Holt 2018-10-28 12:23:25 -04:00 committed by GitHub
parent 5e956b9203
commit 3c44360101
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,14 @@
- name: Install PostgreSQL packages
- name: Install postgresql package
package:
name: "{{ item }}"
name: postgresql
state: present
with_items:
- postgresql
tags:
- download
- name: Install postgresql-client (debuntu)
package:
name: postgresql-client
state: present
when: is_debuntu
tags:
- download
@ -17,6 +16,7 @@
- name: Install postgresql-server (OS's other than debuntu)
package:
name: postgresql-server
state: present
when: not is_debuntu
tags:
- download