Add convenience run scripts
Some checks failed
Lint / Lint (3.10) (push) Failing after 12s
Lint / Lint (3.11) (push) Failing after 20s

This commit is contained in:
Ariejan de Vroom 2024-06-11 11:23:34 +02:00
parent 6d215d1cd3
commit d3b26e3e1a
Signed by: ariejan
GPG Key ID: AD739154F713697B
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
#!/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 main.yml -e "ansible_become_pass=${ANSIBLE_BECOME_PASS}"

8
run-macos.sh Executable file
View File

@ -0,0 +1,8 @@
#!/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}"