Added postgresql role

This commit is contained in:
strNophix 2022-03-10 21:26:46 +01:00
parent ec0a1adc01
commit 4fb0c5c43b
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,2 @@
---
# handlers file for postgresql

View File

@ -0,0 +1,10 @@
galaxy_info:
author: strNophix
description: Postgresql Role
license: MIT
min_ansible_version: 2.1
galaxy_tags: []
dependencies: []

View File

@ -0,0 +1,10 @@
---
# tasks file for postgresql
- name: Install postgres
package:
name:
- postgresql
- postgresql-contrib
state: present
update_cache: yes
become: true