This commit is contained in:
Daniel Hansson 2021-07-19 18:40:20 +02:00 коммит произвёл GitHub
Родитель 83d9d8497a
Коммит 0b69e5ed56
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 12 добавлений и 3 удалений

9
lib.sh
Просмотреть файл

@ -1696,6 +1696,15 @@ else
fi
}
asuspn51() {
if lshw -c system | grep -q "PN51"
then
return 0
else
return 1
fi
}
# Check if the value is a number
# EXAMPLE: https://github.com/nextcloud/vm/pull/1012
check_if_number() {

Просмотреть файл

@ -17,8 +17,8 @@ debug_mode
# Check if root
root_check
# Only intended for our NUCs
if ! home_sme_server
# Only intended for the ASUS PN51 NUC
if ! asuspn51
then
exit
fi

Просмотреть файл

@ -534,7 +534,7 @@ mesg n
ROOTNEWPROFILE
# Avoid kernel updates due to the network driver
if ! home_sme_server
if ! asuspn51
then
# Upgrade system
print_text_in_color "$ICyan" "System will now upgrade..."