mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-21 23:05:25 +00:00
7 lines
275 B
Bash
Executable file
7 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# 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)
|