]> git.phdru.name Git - ansible.git/blob - playbooks/debian-add-dns-domain
Refactor(add-apache-vhost): Move dehydrated templates
[ansible.git] / playbooks / debian-add-dns-domain
1 #! /bin/sh
2
3 if [ -z "$1" ]; then
4    echo "Usage: $0 domain" >&2
5    exit 1
6 fi
7
8 domain="$1"
9 shift
10
11 cd "`dirname \"$0\"`" &&
12 ANSIBLE_ROLES_PATH=debian/roles \
13    exec ./run-role add-dns-domain "$@" \
14    -e domain="$domain" -e gather_facts=true