ansible-config/deploy.sh
2017-02-05 12:01:43 +01:00

7 lines
164 B
Bash
Executable file

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