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

Experiment: comment out Ansible tags in 25 files

This commit is contained in:
root 2020-01-13 20:41:03 -05:00
parent 6e6fab170d
commit 780ed4a955
25 changed files with 82 additions and 142 deletions

View file

@ -2,24 +2,21 @@
package:
name: postgresql
state: present
tags:
- download
#tags: download
- name: Install postgresql-client (debuntu)
package:
name: postgresql-client
state: present
when: is_debuntu | bool
tags:
- download
#tags: download
- name: Install postgresql-server (OS's other than debuntu)
package:
name: postgresql-server
state: present
when: not is_debuntu
tags:
- download
#tags: download
- name: Install /etc/systemd/system/postgresql-iiab.service from template
template:
@ -27,14 +24,14 @@
dest: /etc/systemd/system/postgresql-iiab.service
owner: root
group: root
mode: 0644
mode: '0644'
- name: Create PostgreSQL data dir /library/pgsql-iiab, owned by postgres:postgres
file:
path: /library/pgsql-iiab
owner: postgres
group: postgres
mode: 0700
mode: '0700'
state: directory
- name: Make sure locale {{ postgresql_locale }} is enabled (debuntu) # en_US.UTF-8
@ -72,7 +69,7 @@
dest: /library/pgsql-iiab/postgresql.conf
owner: postgres
group: postgres
mode: 0640
mode: '0640'
# Probably Not Nec! Given stanza below does the same.
- name: 'Stop postgresql service: /etc/init.d/postgresql stop (debuntu)'