summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-03-01 03:00:29 +0000
committerLuca Boccassi <bluca@debian.org>2020-03-05 21:04:23 +0000
commit73c1100c01da680a2d9f57aa26e48e6dc808fdf6 (patch)
tree6b7bb4242893660a374ee346b737abfd3b7e7823 /functions
parent06f632efdfc9f94121a5662af9b8e732b25f6f86 (diff)
downloadvyos-live-build-73c1100c01da680a2d9f57aa26e48e6dc808fdf6.tar.gz
vyos-live-build-73c1100c01da680a2d9f57aa26e48e6dc808fdf6.zip
echo: purge unused *_running echo helpers
Partial fix for #952880 Gbp-Dch: Short
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/echo.sh61
1 files changed, 0 insertions, 61 deletions
diff --git a/functions/echo.sh b/functions/echo.sh
index 07dcaf775..c11797a12 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -27,24 +27,6 @@ Echo_debug ()
fi
}
-Echo_debug_running ()
-{
- if [ "${_DEBUG}" = "true" ]
- then
- STRING="${1}"
- shift
-
- printf "D: ${STRING}" "${@}" >&1
-
- if [ "${_COLOR}" = "false" ]
- then
- printf "..." >&1
- else
- printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
- fi
- fi
-}
-
Echo_error ()
{
STRING="${1}"
@@ -78,31 +60,6 @@ Echo_message ()
fi
}
-Echo_message_running ()
-{
- if [ "${_QUIET}" != "true" ]
- then
- STRING="${1}"
- shift
-
- if [ "${_COLOR}" = "false" ]
- then
- printf "P:" >&1
- else
- printf "${WHITE}P${NO_COLOR}:" >&1
- fi
-
- printf " ${STRING}" "${@}" >&1
-
- if [ "${_COLOR}" = "true" ]
- then
- printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
- else
- printf "..." >&1
- fi
- fi
-}
-
Echo_verbose ()
{
if [ "${_VERBOSE}" = "true" ]
@@ -114,24 +71,6 @@ Echo_verbose ()
fi
}
-Echo_verbose_running ()
-{
- if [ "${_VERBOSE}" != "true" ]
- then
- STRING="${1}"
- shift
-
- printf "I: ${STRING}" "${@}" >&1
-
- if [ "${_COLOR}" = "true" ]
- then
- printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
- else
- printf "..." >&1
- fi
- fi
-}
-
Echo_warning ()
{
STRING="${1}"