From 9c3fb90eb87d8cde426698468dca997f98bc77ab Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 6 May 2023 17:19:12 -0400 Subject: [PATCH] Update create_lxc.sh revert add error message, silent function not used --- ct/create_lxc.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ct/create_lxc.sh b/ct/create_lxc.sh index c9e09a7b..f8326f55 100644 --- a/ct/create_lxc.sh +++ b/ct/create_lxc.sh @@ -22,10 +22,7 @@ function error_handler() { local line_number="$1" local command="$2" local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}" - echo -e "\n$error_message" - if [[ "$line_number" -eq 22 ]]; then - echo -e "The silent function has suppressed the error, run the script with verbose mode enabled, which will provide more detailed output.\n" - fi + echo -e "\n$error_message\n" } function msg_info() { local msg="$1"