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.
19 lines
374 B
19 lines
374 B
---
|
|
|
|
# Quick-provisioning playbook
|
|
# ---------------------------
|
|
|
|
# A Simple, straight playbook for quick remote installations.
|
|
# You will be asked which hosts to provision before-hand.
|
|
|
|
|
|
- name: 'PostgreSQL'
|
|
|
|
vars_prompt:
|
|
selected_hosts: Specify the hosts to provision
|
|
|
|
hosts: "{{selected_hosts}}"
|
|
|
|
roles:
|
|
- '.' # The current directory itself is the role
|
|
|
|
|