amiibofindr/provision/roles/postgresql/tasks/postgresql.yml

11 lines
192 B
YAML
Raw Normal View History

2015-06-02 21:35:27 +00:00
---
- name: Install PostgreSQL
apt: pkg={{ item }} state=latest
sudo: true
with_items:
- postgresql
- postgresql-client
- postgresql-contrib
notify:
- start postgresql