Merge remote-tracking branch 'origin/master' into debian

This commit is contained in:
2023-07-06 13:00:17 +02:00
2 changed files with 26 additions and 14 deletions

View File

@ -0,0 +1,21 @@
#!/usr/bin/env bash
updatePackages() {
noconfirm=
if [[ $1 == "-y" ]]; then
noconfirm="--assume-yes"
fi
full=
if [[ $2 == "--full" ]]; then
full="full-"
fi
executeAndNotify "doUpdatePackages $noconfirm $full" "system updated" "system update failed";
}
doUpdatePackages() {
sudo apt update;
sudo apt ${2}upgrade $1;
sudo apt autoremove $1;
}