upgrade.fish 532 B

12345678910111213
  1. function upgrade
  2. # Upgrade all ubuntu hosts in one go
  3. echo "-------- Upgrading Box --------"
  4. ssh -t root@box.onec.me "apt upgrade -y"
  5. echo "-------- Upgrading REHA --------"
  6. ssh -t powellc@rhea.unbl.ink "sudo apt upgrade -y"
  7. echo "-------- Upgrading DIONE --------"
  8. ssh -J rhea.unbl.ink dione.local "sudo apt upgrade -y"
  9. echo "-------- Upgrading TITAN --------"
  10. ssh -J rhea.unbl.ink titan.local "sudo apt upgrade -y"
  11. echo "-------- Upgrading IAPETUS --------"
  12. ssh -J rhea.unbl.ink iapetus.local "sudo apt upgrade -y"
  13. end