env/run.sh

10 lines
204 B
Bash
Raw Normal View History

2024-05-20 19:20:58 +00:00
#!/bin/bash
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"