14 lines
324 B
Plaintext
Raw Normal View History

2022-11-12 11:17:16 -08:00
#!/usr/bin/env sh
# provide tags to update with comma seperation (e.g. updates,packages)
set -e
echo -e "Starting update for Fedora..."
# Goto playbook and run it
cd ~/.dotfiles/provision
2022-11-12 11:17:16 -08:00
# Install ansible and run playbook
ansible-playbook setup.yml -i hosts --ask-become-pass --tags "$1"
2022-11-12 11:17:16 -08:00
# Return to where you were
cd -