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