Update build.func

The use of the Bash shell is mandatory.
This commit is contained in:
tteckster 2024-02-21 18:21:51 -05:00 committed by GitHub
parent 8a05729593
commit 8752a66c03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -72,7 +72,7 @@ msg_error() {
} }
# Run as root only # Run as root only
check_root() { root_check() {
if [[ "$(id -u)" -ne 0 || $(ps -o comm= -p $PPID) == "sudo" ]]; then if [[ "$(id -u)" -ne 0 || $(ps -o comm= -p $PPID) == "sudo" ]]; then
clear clear
msg_error "Please run this script as root." msg_error "Please run this script as root."
@ -83,7 +83,7 @@ check_root() {
} }
# Check if the shell is using bash # Check if the shell is using bash
check_shell() { shell_check() {
if [[ "$(basename "$SHELL")" != "bash" ]]; then if [[ "$(basename "$SHELL")" != "bash" ]]; then
msg_error "Your current shell is not Bash. To utilize these scripts, please switch to the Bash shell. msg_error "Your current shell is not Bash. To utilize these scripts, please switch to the Bash shell.
echo -e "\nExiting..." echo -e "\nExiting..."
@ -460,10 +460,11 @@ advanced_settings() {
} }
install_script() { install_script() {
check_root
ssh_check
arch_check
pve_check pve_check
shell_check
root_check
arch_check
ssh_check
if systemctl is-active -q ping-instances.service; then if systemctl is-active -q ping-instances.service; then
systemctl -q stop ping-instances.service systemctl -q stop ping-instances.service
fi fi