mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-12 18:55:25 +00:00
24 lines
558 B
Bash
Executable file
24 lines
558 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TARGET_PLAY="${1:-workstation}"
|
|
PLAYBOOK="playbooks/${TARGET_PLAY}.yml"
|
|
|
|
if [ ! -f $PLAYBOOK ]; then
|
|
echo "Invalid play '${TARGET_PLAY}'. Unable to locate ${PLAYBOOK}"
|
|
exit 1
|
|
fi
|
|
|
|
function print_fail_and_exit() {
|
|
echo "❌ Something went wrong..."
|
|
cp /tmp/artifacts/${TARGET_PLAY}*.xml ./report.xml
|
|
exit 1
|
|
}
|
|
|
|
echo "======> Running ${TARGET_PLAY}"
|
|
|
|
./install-ansible-modules.sh
|
|
|
|
# Run Playbook
|
|
ANSIBLE_CONFIG=$(pwd)/ansible.cfg JUNIT_OUTPUT_DIR="/tmp/artifacts" ansible-playbook ${PLAYBOOK} || print_fail_and_exit
|
|
|
|
echo "======> Done."
|