mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
14 lines
343 B
Bash
14 lines
343 B
Bash
#!/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
|
|
|
|
# Install ansible and run playbook
|
|
ansible-playbook setup.yml -i hosts --ask-become-pass --tags "$1" --skip-tags "once"
|
|
|
|
# Return to where you were
|
|
cd -
|