diff --git a/ct/create_lxc.sh b/ct/create_lxc.sh index ee29e706..9d41819d 100644 --- a/ct/create_lxc.sh +++ b/ct/create_lxc.sh @@ -6,7 +6,7 @@ # https://github.com/tteck/Proxmox/raw/main/LICENSE # This sets verbose mode if the global variable is set to "yes" -if [ "$VERBOSE" == "yes" ]; then set -x; fi +# if [ "$VERBOSE" == "yes" ]; then set -x; fi # This function sets color variables for formatting output in the terminal YW=$(echo "\033[33m") diff --git a/misc/alpine-install.func b/misc/alpine-install.func index 39e76d8f..16bde1d4 100644 --- a/misc/alpine-install.func +++ b/misc/alpine-install.func @@ -17,7 +17,6 @@ color() { verb_ip6() { if [ "$VERBOSE" = "yes" ]; then - set -x STD="" else STD="silent"; fi silent() { "$@" >/dev/null 2>&1; } diff --git a/misc/build.func b/misc/build.func index 37dec4f0..05a9c0b4 100644 --- a/misc/build.func +++ b/misc/build.func @@ -481,7 +481,7 @@ start() { # This function collects user settings and integrates all the collected information. build_container() { - if [ "$VERB" == "yes" ]; then set -x; fi +# if [ "$VERB" == "yes" ]; then set -x; fi if [ "$CT_TYPE" == "1" ]; then FEATURES="keyctl=1,nesting=1" diff --git a/misc/install.func b/misc/install.func index 66da53d2..d50237f4 100644 --- a/misc/install.func +++ b/misc/install.func @@ -18,7 +18,6 @@ color() { # This function enables IPv6 if it's not disabled and sets verbose mode if the global variable is set to "yes" verb_ip6() { if [ "$VERBOSE" = "yes" ]; then - set -x STD="" else STD="silent"; fi silent() { "$@" >/dev/null 2>&1; }