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-11-15 05:23:44 +00:00
|
|
|
sudo apt-get --quiet --yes update
|
|
|
|
sudo apt-get --quiet --yes dist-upgrade
|
2020-09-29 07:02:28 +00:00
|
|
|
|
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
|
2021-12-28 23:03:49 +00:00
|
|
|
echo \n"--- $message ---"\n
|
2020-09-29 07:02:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
main
|