Update parameter documentation and .gitignore

This commit is contained in:
Alexander Dietrich 2017-02-05 12:01:43 +01:00
parent f2c24e90e1
commit db911b40c1
3 changed files with 10 additions and 6 deletions

5
.gitignore vendored
View file

@ -1,2 +1,5 @@
*.swp
ENV/
tmp/
*.retry
*.swp

View file

@ -21,11 +21,12 @@ benötigt. Für diesen muss ein SSH-Key hinterlegt sein.
## Übernehmen der Änderungen für alle Hosts
ansible-playbook site.yml -i production --sudo --ask-sudo-pass
ansible-playbook site.yml -i production -bK
Zum Testen kann noch `-C` angehängt werden.
## Ansible Convenience
Einschränken auf bestimmte Tags, z. B. `nginx`:
ansible-playbook site.yml -i production --sudo --ask-sudo-pass --tags nginx
ansible-playbook site.yml -i production -bK --tags nginx

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
if [ $# -gt 0 ]; then
ansible-playbook site.yml -i production --sudo --ask-sudo-pass --tags $1
ansible-playbook site.yml -i production -bK --tags $1
else
ansible-playbook site.yml -i production --sudo --ask-sudo-pass
ansible-playbook site.yml -i production -bK
fi