mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
448 B
27 lines
448 B
9 years ago
|
---
|
||
|
|
||
|
# Boxed installation playbook
|
||
|
# ---------------------------
|
||
|
|
||
|
# A Simple, straight playbook for producing
|
||
|
# a boxed installation in a vagrant VM.
|
||
|
|
||
|
|
||
|
- name: 'PostgreSQL boxed installation'
|
||
|
|
||
|
hosts: vagrant
|
||
|
|
||
|
vars:
|
||
|
postgresql_listen_addresses:
|
||
|
- '*'
|
||
|
postgresql_authentication:
|
||
|
- type: host
|
||
|
user: all
|
||
|
database: all
|
||
|
address: '0.0.0.0/0'
|
||
|
method: trust
|
||
|
|
||
|
roles:
|
||
|
- '.' # This role itself
|
||
|
|