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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-24 19:40:24 +02:00
parent abef97b796
commit 23f20f1eee

View File

@@ -33,9 +33,9 @@ usage() {
declare var_cols=$(tput cols 2> /dev/null || echo 80) declare var_cols=$(tput cols 2> /dev/null || echo 80)
# shellcheck disable=SC2155 # shellcheck disable=SC2155
declare var_header=$(center "V8.00.000.2025.06.17 CISS.debian.installer" "${var_cols}") declare var_header=$(center "V8.00.000.2025.06.17 CISS.debian.installer" "${var_cols}")
# shellcheck disable=SC2155 # shellcheck disable=SC2155
declare var_footer=$(center "V8.00.000.2025.06.17 CISS.debian.installer" "${var_cols}") declare var_footer=$(center "V8.00.000.2025.06.17 CISS.debian.installer" "${var_cols}")
{ {
echo -e "\e[97m${var_header} \e[0m" echo -e "\e[97m${var_header} \e[0m"
@@ -57,7 +57,7 @@ usage() {
echo " Headless mode. Skip the dialog wrapper, provider note screen and interactive kernel selector dialog." echo " Headless mode. Skip the dialog wrapper, provider note screen and interactive kernel selector dialog."
echo " No user interaction is required in autoinstall mode." echo " No user interaction is required in autoinstall mode."
echo echo
echo -e "\e[97m --contact, -c\ e[0m" echo -e "\e[97m --contact, -c \e[0m"
echo " Show author contact information." echo " Show author contact information."
echo echo
echo -e "\e[97m --debug, -d <MODE> \e[0m" echo -e "\e[97m --debug, -d <MODE> \e[0m"
@@ -68,21 +68,22 @@ usage() {
echo " - /tmp/.ciss/log/ciss_debian_installer_$$_debug.log" echo " - /tmp/.ciss/log/ciss_debian_installer_$$_debug.log"
echo " - /tmp/.ciss/log/ciss_debian_installer_$$_trace.log" echo " - /tmp/.ciss/log/ciss_debian_installer_$$_trace.log"
echo " - /tmp/.ciss/log/ciss_debian_installer_$$_var.log" echo " - /tmp/.ciss/log/ciss_debian_installer_$$_var.log"
echo
echo -e "\e[97m --log, -l <LEVEL> \e[0m"
echo " This changes the default log level from 'info' to one of the following values:"
echo " info"
echo " notice"
echo " warn"
echo " error"
echo " critical"
echo " fatal"
echo " emergency"
echo " Defaults to 'info'."
echo -e "\e[93m The installation log is written to: \e[0m"
echo " - /tmp/.ciss/log/ciss_debian_installer_$$_install.log"
echo -e "\e[93m Errors are always written to: \e[0m" echo -e "\e[93m Errors are always written to: \e[0m"
echo " - /tmp/.ciss/log/ciss_debian_installer_$$_error.log" echo " - /tmp/.ciss/log/ciss_debian_installer_$$_error.log"
echo echo
echo -e "\e[97m --log, -l <LEVEL>\ e[0m"
echo " This changes the default log level from 'info' to one of the following values:"
echo " 6: 'info'"
echo " 5: 'notice'"
echo " 4: 'warn'"
echo " 3: 'error'"
echo " 2: 'critical'"
echo " 1: 'fatal'"
echo " 0: 'emergency'"
echo -e "\e[93m The installation log is written to: \e[0m"
echo " - /tmp/ciss_debian_installer_$$_install.log"
echo
echo -e "\e[97m --renice-priority <PRIORITY> \e[0m" echo -e "\e[97m --renice-priority <PRIORITY> \e[0m"
echo " Reset the nice priority value of the script and all its children" echo " Reset the nice priority value of the script and all its children"
echo " to the desired <PRIORITY>. MUST be an integer (between '-19' and 19)." echo " to the desired <PRIORITY>. MUST be an integer (between '-19' and 19)."