mirror of
https://github.com/fspc/workstand.git
synced 2025-03-13 01:43:22 -04:00
27 lines
448 B
YAML
27 lines
448 B
YAML
|
---
|
||
|
|
||
|
# 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
|
||
|
|