mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 13:55:25 +01:00
11 lines
309 B
Bash
Executable File
11 lines
309 B
Bash
Executable File
#!/bin/sh
|
|
# Simple script to run the playbook
|
|
if [ ! -x /usr/bin/ansible ]; then
|
|
echo "Missing Ansible, Running Install"
|
|
if [ -x /usr/bin/apt ]; then
|
|
# I'm not doing anything fancy, so older version from repo is okay
|
|
apt install -f ansible
|
|
fi
|
|
fi
|
|
ansible-playbook install-desktop-toolsontech.yml
|