V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 42s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-24 21:40:03 +02:00
parent fc92d77e31
commit 5a59ef1668

View File

@@ -84,6 +84,10 @@ fi
### PREPARING DIRECTORIES AND FILES ### PREPARING DIRECTORIES AND FILES
gen_dir_files gen_dir_files
### CHECKING REQUIRED PACKAGES
check_pkgs
check_git
### ADVISORY LOCK ### ADVISORY LOCK
exec 127>/var/lock/ciss_debian_installer.lock || { exec 127>/var/lock/ciss_debian_installer.lock || {
printf "%s❌ Cannot open lockfile for writing! Bye... %s%s" "${RED}" "${RES}" "${NL}" >&2 printf "%s❌ Cannot open lockfile for writing! Bye... %s%s" "${RED}" "${RES}" "${NL}" >&2
@@ -101,12 +105,6 @@ pre_scan_debug "$@"
### CHECK FOR AUTO INSTALL MODE ### CHECK FOR AUTO INSTALL MODE
for arg in "$@"; do case "${arg,,}" in -a|--autoinstall) declare -gx VAR_AUTO_INSTALL="true";; esac; done; unset arg for arg in "$@"; do case "${arg,,}" in -a|--autoinstall) declare -gx VAR_AUTO_INSTALL="true";; esac; done; unset arg
### CHECKING REQUIRED PACKAGES
. ./lib/0030_check_pkgs.sh
. ./lib/0031_check_git.sh
check_pkgs
check_git
### ACTIVATING TRAPS ### ACTIVATING TRAPS
trap 'trap_exit "$?"' EXIT trap 'trap_exit "$?"' EXIT
trap 'trap_int' INT trap 'trap_int' INT