diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..74c7d9a --- /dev/null +++ b/deploy.sh @@ -0,0 +1,6 @@ +#!/bin/bash +if [ $# -gt 0 ]; then + ansible-playbook site.yml -i production --sudo --ask-sudo-pass --tags $1 +else + ansible-playbook site.yml -i production --sudo --ask-sudo-pass +fi