sysupgrade 725 B

12345678910111213
  1. #!/usr/bin/env sh
  2. # Upgrade all ubuntu hosts in one go
  3. echo "-------- Upgrading box.unbl.ink --------"
  4. ssh -t root@box.unbl.ink "apt upgrade -y && apt autoremove -y"
  5. echo "-------- Upgrading box.castine.town --------"
  6. ssh -t root@box.castine.town "apt upgrade -y && apt autoremove -y"
  7. echo "-------- Upgrading iapetus.local --------"
  8. ssh -J rhea.unbl.ink -t iapetus.local "sudo apt upgrade -y && sudo apt autoremove -y"
  9. echo "-------- Upgrading phoebe.local --------"
  10. ssh -J rhea.unbl.ink -t phoebe.local "sudo apt upgrade -y && sudo apt autoremove -y"
  11. echo "-------- Upgrading dione.local --------"
  12. ssh -J rhea.unbl.ink -t dione.local "sudo apt upgrade -y && sudo apt autoremove -y"
  13. # TODO Add titan & rhea freebsd upgrades