#!/bin/sh set -e abspath() { (cd "$1" && pwd) } srcdir() { abspath "$(dirname "$0")" } if [ -z "$PASSWORD_STORE_DIR" ] then export PASSWORD_STORE_DIR="$(srcdir)"/secrets fi ansible-playbook -i hosts "$@"