11 lines
151 B
Bash
11 lines
151 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ $# -ne 1 ]; then
|
||
|
echo "Usage: $0 <playbook_file>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
playbook_file=$1
|
||
|
|
||
|
ansible-playbook $playbook_file --ask-become-pass
|