2024-05-20 19:20:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-07-27 13:47:10 +00:00
|
|
|
if [[ -z "$(command -v pipx)" ]]; then
|
|
|
|
echo -e "\033[31;1mThis expects pipx to be installed.\033[0m"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-09-29 16:48:56 +00:00
|
|
|
pipx install "ansible-core"
|
2024-09-29 03:31:23 +00:00
|
|
|
ansible-playbook -v --ask-become-pass "$1"
|