arch-install/run-macos.sh
Ariejan de Vroom d3b26e3e1a
Some checks failed
Lint / Lint (3.10) (push) Failing after 12s
Lint / Lint (3.11) (push) Failing after 20s
Add convenience run scripts
2024-06-11 11:23:34 +02:00

8 lines
211 B
Bash
Executable File

#!/usr/bin/env -S bash -i
if [[ -z "${ANSIBLE_BECOME_PASS}" ]]; then
echo "ANSIBLE_BECOME_PASS is not set. Exiting."
exit 1
fi
ansible-playbook macos.yml -e "ansible_become_pass=${ANSIBLE_BECOME_PASS}"