linux-config/play_workstation.sh

8 lines
275 B
Bash
Raw Normal View History

2021-11-18 08:59:41 +00:00
#!/bin/bash
2021-10-30 07:18:46 +00:00
# Install Dependencies
ansible-galaxy collection install community.general
# Run Playbook
ANSIBLE_CONFIG=$(pwd)/ansible.cfg JUNIT_OUTPUT_DIR=/tmp/artifacts ansible-playbook playbooks/workstation.yml || (mv /tmp/artifacts/workstation-*.xml report.xml && exit 1)