fix goarchive

This commit is contained in:
Jakobus Schürz 2024-04-17 16:25:41 +02:00 committed by Jakobus Schürz
parent 53bdc127e8
commit 74a9180dc6

View file

@ -1429,8 +1429,9 @@ EOF
}
function goarchive () {
local SHOPTEXTGLOB="$(shopt -p |grep extglob)"
shopt -s extglob
if [ "{#:-0}" -gt 0 ]
if [ "${#:-0}" -gt 0 ]
then
case "$1" in
-h)
@ -1462,23 +1463,8 @@ EOF
else
[ -e "$(xdg-user-dir ARCHIVE)" ] && cd "$(xdg-user-dir ARCHIVE)"
fi
shopt -u extglob
}
checkkernel () {
for i in /vmlinuz /boot/vmlinuz
do
[ -e "${i}" ] || continue
if [ $(basename $(readlink -f "${i}")) = vmlinuz-$(uname -r) ]
then
printf "%s\n" "Kein Upgrade notwendig. Kernel aktuell"
else
printf "%s\n" "Reboot notwendig!!"
res=1
fi
return ${res:-0}
done
# shopt -u extglob
eval $SHOPTEXTGLOB
}
#EOF