mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
22 lines
482 B
Fish
Executable file
22 lines
482 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
function main
|
|
log 'Update apt sources list'
|
|
echo '
|
|
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
|
|
|
|
log 'Upgrading debian to unstable'
|
|
sudo apt-get --quiet --yes update
|
|
sudo apt-get --quiet --yes dist-upgrade
|
|
|
|
log 'Rebooting'
|
|
sudo reboot
|
|
end
|
|
|
|
function log -a message
|
|
echo \n"--- $message ---"\n
|
|
end
|
|
|
|
main
|