2020-09-29 07:02:28 +00:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
function main
|
2020-10-31 22:23:35 +00:00
|
|
|
log 'Update apt sources list'
|
2020-09-29 07:02:28 +00:00
|
|
|
echo '
|
2020-10-09 00:19:38 +00:00
|
|
|
deb http://ftp.us.debian.org/debian unstable main contrib non-free
|
|
|
|
deb-src http://ftp.us.debian.org/debian unstable main contrib non-free' | sudo tee /etc/apt/sources.list
|
2020-09-29 07:02:28 +00:00
|
|
|
|
2020-10-31 22:23:35 +00:00
|
|
|
log 'Upgrading debian to unstable'
|
2020-10-13 17:48:43 +00:00
|
|
|
sudo apt-get update >/dev/null 2>&1
|
2020-09-29 07:02:28 +00:00
|
|
|
sudo apt-get dist-upgrade --yes
|
|
|
|
|
2020-10-31 22:23:35 +00:00
|
|
|
log 'Rebooting'
|
2020-09-29 07:02:28 +00:00
|
|
|
sudo reboot
|
|
|
|
end
|
|
|
|
|
2020-10-31 22:23:35 +00:00
|
|
|
function log -a message
|
|
|
|
echo \n"---------------- $message ----------------"\n
|
2020-09-29 07:02:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
main
|