Update build.func

To utilize these scripts, please switch to the Bash shell.
This commit is contained in:
tteckster 2024-02-21 18:40:37 -05:00 committed by GitHub
parent 998235e92d
commit 038f70f198
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -82,6 +82,16 @@ check_root() {
fi
}
# Check if the shell is using bash
shell_check() {
if [[ "$(basename "$SHELL")" != "bash" ]]; then
msg_error "Your current shell is not Bash. To utilize these scripts, please switch to the Bash shell.
echo -e "\nExiting..."
sleep 2
exit
fi
}
# This function checks the version of Proxmox Virtual Environment (PVE) and exits if the version is not supported.
pve_check() {
if [ $(pveversion | grep "pve-manager/8" | wc -l) -ne 1 ]; then
@ -450,6 +460,7 @@ advanced_settings() {
}
install_script() {
shell_check
check_root
ssh_check
arch_check