blob: 00191eba5b8fca7fc052fc89a4601dbe5516e10b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
This repo contains helpful Ansible scripts for maintaining the bnewbold's
servers and infrastructure.
Be sure to keep things compatible with ansible 1.7.2 (the version in Debian
jessie).
Check out NOW_WHAT.md for next steps after creating a server with these
scripts.
Vault:
export ANSIBLE_VAULT_PASSWORD_FILE=vault_pass.txt
http://docs.ansible.com/ansible/playbooks_vault.html
Example playbook call:
ansible-playbook -i hosts playbooks/init_adze.yml --vault-password-file=vault_pass.txt
Run a single role (helpful for dev):
ansible-playbook -i hosts playbooks/init_adze.yml --vault-password-file=vault_pass.txt -t nginx
|