arch-install/run-macos.sh

8 lines
211 B
Bash
Raw Normal View History

2024-06-11 09:23:34 +00:00
#!/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}"