forked from sh-edraft.de/sh_linux_installation_scripts
11 lines
205 B
Bash
11 lines
205 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
update() {
|
||
|
echo 'Starting update:'
|
||
|
sudo apt-get update -y
|
||
|
echo 'Starting upgrade:'
|
||
|
sudo apt-get upgrade -y
|
||
|
echo 'Starting dist-upgrade:'
|
||
|
sudo apt-get dist-upgrade -y
|
||
|
}
|