env/run.sh
Marc Cataford 178c51628b
Some checks are pending
/ sast (push) Waiting to run
refactor: split into roles
2024-09-28 23:32:43 -04:00

9 lines
205 B
Bash
Executable file

#!/bin/bash
if [[ -z "$(command -v pipx)" ]]; then
echo -e "\033[31;1mThis expects pipx to be installed.\033[0m"
exit 1
fi
pipx install "ansible~=10.0"
ansible-playbook -v --ask-become-pass "$1"