Add bin script for upgrading linux

This commit is contained in:
Colin Powell
2020-02-20 13:20:58 -05:00
parent 4e8e2a85d8
commit eef9e8fefb
2 changed files with 9 additions and 11 deletions

9
bin/.bin/upgrade_systems.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env sh
# Upgrade all ubuntu hosts in one go
echo "-------- Upgrading box.unbl.ink --------"
ssh -t root@box.unbl.ink "apt upgrade -y && apt autoremove -y"
echo "-------- Upgrading box.castine.town --------"
ssh -t root@box.castine.town "apt upgrade -y && apt autoremove -y"
echo "-------- Upgrading iapetus.local --------"
ssh -J janus.unbl.ink -t iapetus.local "sudo apt upgrade -y && apt autoremove -y"
# TODO Add titan & janus freebsd upgrades