8 lines
123 B
Bash
Executable file
8 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
|
|
FILE=$(readlink -f "$0")
|
|
DIR=$(dirname "$FILE")
|
|
|
|
. "$DIR/extra_opts.sh"
|
|
|
|
exec ansible-playbook "$@" $extra_opts
|