env/run.sh
Marc Cataford 99a3500d9d
Some checks are pending
/ sast (push) Waiting to run
fix: rework for debian
2024-09-29 12:48:56 -04:00

9 lines
204 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-core"
ansible-playbook -v --ask-become-pass "$1"