21 lines
380 B
Bash
21 lines
380 B
Bash
#!/usr/bin/env bash
|
|
|
|
updateSystem() {
|
|
noconfirm=
|
|
if [[ $1 == "-y" ]]; then
|
|
noconfirm="--assume-yes"
|
|
fi
|
|
full=
|
|
if [[ $2 == "--full" ]]; then
|
|
full="full-"
|
|
fi
|
|
executeAndNotify "doUpdateSystem $noconfirm $full" "system updated" "system update failed";
|
|
}
|
|
|
|
|
|
doUpdateSystem() {
|
|
sudo apt update;
|
|
sudo apt ${2}upgrade $1;
|
|
sudo apt autoremove $1;
|
|
}
|