summaryrefslogtreecommitdiffstats
path: root/helper/functions.common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'helper/functions.common.sh')
-rw-r--r--helper/functions.common.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/helper/functions.common.sh b/helper/functions.common.sh
deleted file mode 100644
index de33363c..00000000
--- a/helper/functions.common.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-
-QUIET=0
-
-LOG_DIR=${ROOT_DIR}/logs
-
-mkdir -p $LOG_DIR
-
-set_quiet () {
- if [ "x$DEBUG" != "x1" -a "x$QUIET" != "x1" ]; then
- exec 6>&1 > $LOG_DIR/stdout.log
- exec 2> $LOG_DIR/stderr.log
- QUIET="1"
- fi
-}
-
-unset_quiet () {
- if [ "x$QUIET" = "x1" ]; then
- exec 1>&6 6>&-
- exec 2>&-
- QUIET="0"
- fi
-}
-
-
-pinfo () {
- unset_quiet
- echo -e "[info] $1"
- set_quiet
-}
-perror () {
- unset_quiet
- echo -e "[error] $1"
- set_quiet
-}
-pecho () {
- unset_quiet
- echo -e "[user] $1"
- set_quiet
-}
-pechon () {
- unset_quiet
- echo -e -n "[user] $1"
- set_quiet
-}