32 lines
643 B
Bash
32 lines
643 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Set pwd, don't expect to use
|
|
cd /home/ansible
|
|
|
|
# Ensure we have a log dir
|
|
mkdir -p /home/ansible/logs
|
|
|
|
# Cleanup
|
|
rm -rf /home/ansible/infra
|
|
rm -rf /home/ansible/venv
|
|
|
|
# Clone the infra repo
|
|
git clone git@git.jthan.io:jonathan/infra /home/ansible/infra
|
|
|
|
# Create a venv
|
|
python3 -m venv /home/ansible/venv
|
|
|
|
# Source venv
|
|
. /home/ansible/venv/bin/activate
|
|
|
|
# Install requirements for ansible
|
|
pip install -r /home/ansible/infra/ansible/requirements.txt
|
|
|
|
# Change into ansible subdir of repo
|
|
cd /home/ansible/infra/ansible
|
|
|
|
source /home/ansible/.bws
|
|
|
|
# Run updates
|
|
ansible-playbook site.yaml >> /home/ansible/logs/runner.log
|