55 lines
735 B
Bash
Executable File
55 lines
735 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# echo.sh - define output methods
|
|
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
|
|
#
|
|
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
# This is free software, and you are welcome to redistribute it
|
|
# under certain conditions; see COPYING for details.
|
|
|
|
set -e
|
|
|
|
Echo_debug ()
|
|
{
|
|
STRING="${1}"
|
|
|
|
if [ "${LH_DEBUG}" = "enabled" ]
|
|
then
|
|
echo "D: ${STRING}"
|
|
fi
|
|
}
|
|
|
|
Echo_error ()
|
|
{
|
|
STRING="${1}"
|
|
|
|
echo "E: ${STRING}" >&2
|
|
}
|
|
|
|
Echo_message ()
|
|
{
|
|
STRING="${1}"
|
|
|
|
if [ "${LH_QUIET}" != "enabled" ]
|
|
then
|
|
echo "P: ${STRING}"
|
|
fi
|
|
}
|
|
|
|
Echo_verbose ()
|
|
{
|
|
STRING="${1}"
|
|
|
|
if [ "${LH_VERBOSE}" = "enabled" ]
|
|
then
|
|
echo "I: ${STRING}"
|
|
fi
|
|
}
|
|
|
|
Echo_warning ()
|
|
{
|
|
STRING="${1}"
|
|
|
|
echo "W: ${STRING}"
|
|
}
|