Setup basic postgresql server and add a db-aarch64 to test with.

This commit is contained in:
Kevin Fenzi 2013-06-24 21:27:04 +00:00
parent 93e53a78be
commit f00b97e48e
5 changed files with 94 additions and 0 deletions

View file

@ -0,0 +1,20 @@
---
#
# Setup postgresql server.
#
- name: install postgresql server packages
yum: name=$item state=installed
with_items:
- postgresql-server
- postgresql-contrib
- postgresql-plpython
tags:
- packages
- name: Set postgresql-server to run on boot
service: name=postgresql enabled=yes
ignore_errors: true
notify:
- restart postgresql
tags:
- service