Update build_backend.sh

This commit is contained in:
spiritlhl 2023-07-30 19:43:24 +08:00 committed by GitHub
parent c6155a0ef7
commit 1a874c695a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
#!/bin/bash
# from
# https://github.com/spiritLHLS/pve
# 2023.06.29
# 2023.07.30
# 打印信息
@ -86,29 +86,31 @@ else
fi
fi
# 检测AppArmor模块
if ! dpkg -s apparmor > /dev/null 2>&1; then
_green "AppArmor is being installed..."
_green "正在安装 AppArmor..."
apt-get update
apt-get install -y apparmor
fi
if [ $? -ne 0 ]; then
apt-get install -y apparmor --fix-missing
fi
if ! systemctl is-active --quiet apparmor.service; then
_green "Starting the AppArmor service..."
_green "启动 AppArmor 服务..."
systemctl enable apparmor.service
systemctl start apparmor.service
fi
if ! lsmod | grep -q apparmor; then
_green "Loading AppArmor kernel module..."
_green "正在加载 AppArmor 内核模块..."
modprobe apparmor
fi
if ! lsmod | grep -q apparmor; then
_yellow "AppArmor is still not loaded, please execute reboot to reboot the system to load"
_yellow "AppArmor 仍未加载,请执行 reboot 重新启动系统加载"
fi
echo "1" > "/root/build_backend_pve.txt"
# # 检测AppArmor模块
# if ! dpkg -s apparmor > /dev/null 2>&1; then
# _green "AppArmor is being installed..."
# _green "正在安装 AppArmor..."
# apt-get update
# apt-get install -y apparmor
# fi
# if [ $? -ne 0 ]; then
# apt-get install -y apparmor --fix-missing
# fi
# if ! systemctl is-active --quiet apparmor.service; then
# _green "Starting the AppArmor service..."
# _green "启动 AppArmor 服务..."
# systemctl enable apparmor.service
# systemctl start apparmor.service
# fi
# if ! lsmod | grep -q apparmor; then
# _green "Loading AppArmor kernel module..."
# _green "正在加载 AppArmor 内核模块..."
# modprobe apparmor
# fi
# if ! lsmod | grep -q apparmor; then
# _yellow "AppArmor is still not loaded, please execute reboot to reboot the system to load"
# _yellow "AppArmor 仍未加载,请执行 reboot 重新启动系统加载"
# fi
_yellow "Please execute reboot to reboot the system to load the PVE kernel."
_yellow "请执行 reboot 重新启动系统加载PVE内核"
echo "1" > "/root/build_backend_pve.txt"