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: package:
name: "{{ item }}" name: postgresql
state: present state: present
with_items:
- postgresql
tags: tags:
- download - download
- name: Install postgresql-client (debuntu) - name: Install postgresql-client (debuntu)
package: package:
name: postgresql-client name: postgresql-client
state: present
when: is_debuntu when: is_debuntu
tags: tags:
- download - download
@ -17,6 +16,7 @@
- name: Install postgresql-server (OS's other than debuntu) - name: Install postgresql-server (OS's other than debuntu)
package: package:
name: postgresql-server name: postgresql-server
state: present
when: not is_debuntu when: not is_debuntu
tags: tags:
- download - download