summaryrefslogtreecommitdiff
path: root/ansible/run-playbook
blob: f2f2860d9e7d0e9f79e24cd3bebaaab4aa89b47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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 "$@"