7.0.6 #88

Merged
Ark74 merged 39 commits from unstable into master 2022-09-30 09:04:31 +00:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit 7d162f8ade - Show all commits

View File

@ -18,6 +18,13 @@ while [ $secs -gt 0 ]; do
done done
} }
# Check if user is root
if [ $(id -u) = 0 ]; then
echo "Please don't run with root or sudo privileges!
> We'll request them when necessary."
exit 1
fi
TMP_DIR="$(mktemp -d)" TMP_DIR="$(mktemp -d)"
KERNEL_LOG="$TMP_DIR/kernel_log" KERNEL_LOG="$TMP_DIR/kernel_log"
GRUB_FILE="/etc/default/grub" GRUB_FILE="/etc/default/grub"