scripts/sarpdate

33 lines
486 B
Plaintext
Raw Normal View History

2022-11-08 20:52:56 +00:00
#!/usr/bin/env bash
echo ">> updating everything....."
echo
echo
echo ">> updating local brew dependencies...."
echo
brew update
echo
echo
echo ">> which leaves these outdated...."
echo
brew outdated
echo
read -p ">> upgrade? (y/n) " updatebrew
if [ updatebrew = "y" ]; then
echo ">> upgrading......"
brew upgrade
fi
echo
echo
echo ">> updating ansible environment...."
cd ~/dev/infra/ansible
poetry update
echo
echo
echo ">> running a few playbooks...."
echo
./update