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:
parent
5e956b9203
commit
3c44360101
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue