#! /bin/sh if [ -z "$1" ]; then echo "Usage: $0 vhost [...params...]" >&2 exit 1 fi vhost="$1" shift cd "`dirname \"$0\"`" && ANSIBLE_ROLES_PATH=debian/roles:roles \ exec ../run-role add-apache-vhost "$@" \ -e virtual_host="$vhost" -e gather_facts=true