arch-install/run-arch.sh

9 lines
214 B
Bash
Raw Permalink Normal View History

2024-06-11 09:22:20 +00:00
#!/usr/bin/env -S bash -i
2024-06-11 09:23:34 +00:00
if [[ -z "${ANSIBLE_BECOME_PASS}" ]]; then
echo "ANSIBLE_BECOME_PASS is not set. Exiting."
exit 1
fi
2024-06-25 08:52:26 +00:00
ansible-playbook main.yml -e "ansible_become_pass=${ANSIBLE_BECOME_PASS}" -v