2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-01-11 17:15:59 +05:30
|
|
|
# Allow any sh script to work with einfo functions and friends
|
|
|
|
# We also provide a few helpful functions for other programs to use
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
RC_GOT_FUNCTIONS="yes"
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
eindent()
|
|
|
|
{
|
2007-12-06 16:18:00 +05:30
|
|
|
EINFO_INDENT=$((${EINFO_INDENT:-0} + 2))
|
|
|
|
[ "${EINFO_INDENT}" -gt 40 ] && EINFO_INDENT=40
|
|
|
|
export EINFO_INDENT
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
eoutdent()
|
|
|
|
{
|
2007-12-06 16:18:00 +05:30
|
|
|
EINFO_INDENT=$((${EINFO_INDENT:-0} - 2))
|
|
|
|
[ "${EINFO_INDENT}" -lt 0 ] && EINFO_INDENT=0
|
2007-04-05 16:48:42 +05:30
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2007-11-22 17:48:24 +05:30
|
|
|
yesno()
|
|
|
|
{
|
|
|
|
[ -z "$1" ] && return 1
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) return 0;;
|
|
|
|
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0) return 1;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
local value=
|
|
|
|
eval value=\$${1}
|
|
|
|
case "${value}" in
|
|
|
|
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) return 0;;
|
|
|
|
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0) return 1;;
|
|
|
|
*) vewarn "\$${1} is not set properly"; return 1;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
_sanitize_path()
|
|
|
|
{
|
2007-11-28 21:15:03 +05:30
|
|
|
local IFS=":" p= path=
|
2007-11-28 19:10:15 +05:30
|
|
|
for p in ${PATH}; do
|
|
|
|
case "${p}" in
|
2008-01-11 05:21:58 +05:30
|
|
|
/lib/rc/sbin|/bin|/sbin|/usr/bin|/usr/sbin|/usr/pkg/bin|/usr/pkg/sbin|/usr/local/bin|/usr/local/sbin);;
|
2007-11-28 21:15:03 +05:30
|
|
|
*) path="${path}:${p}";;
|
2007-11-28 19:10:15 +05:30
|
|
|
esac
|
|
|
|
done
|
2007-11-28 21:15:03 +05:30
|
|
|
|
|
|
|
echo "${path}"
|
2007-11-28 19:10:15 +05:30
|
|
|
}
|
|
|
|
|
2007-07-16 21:52:37 +05:30
|
|
|
# Allow our scripts to support zsh
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ -n "${ZSH_VERSION}" ]; then
|
2007-12-14 19:42:38 +05:30
|
|
|
emulate sh
|
|
|
|
NULLCMD=:
|
|
|
|
alias -g '${1+"$@"}'='"$@"'
|
|
|
|
setopt NO_GLOB_SUBST
|
2007-07-16 21:52:37 +05:30
|
|
|
fi
|
|
|
|
|
2007-11-28 19:10:15 +05:30
|
|
|
# Add our bin to $PATH
|
2008-01-11 05:21:58 +05:30
|
|
|
export PATH="/lib/rc/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/pkg/bin:/usr/pkg/sbin:/usr/local/bin:/usr/local/sbin$(_sanitize_path "${PATH}")"
|
2007-11-28 19:10:15 +05:30
|
|
|
unset _sanitize_path
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-11-29 16:53:06 +05:30
|
|
|
for arg; do
|
2007-04-05 16:48:42 +05:30
|
|
|
case "${arg}" in
|
2007-09-29 00:59:59 +05:30
|
|
|
--nocolor|--nocolour|-C)
|
2007-12-06 16:18:00 +05:30
|
|
|
export EINFO_COLOR="NO"
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2007-12-14 17:46:05 +05:30
|
|
|
if [ -t 1 ] && yesno "${EINFO_COLOR:-YES}"; then
|
|
|
|
if [ -z "${GOOD}" ]; then
|
|
|
|
eval $(eval_ecolors)
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# We need to have shell stub functions so our init scripts can remember
|
|
|
|
# the last ecmd
|
|
|
|
for _e in ebegin eend error errorn einfo einfon ewarn ewarnn ewend \
|
|
|
|
vebegin veend veinfo vewarn vewend; do
|
|
|
|
eval "${_e}() { local _r; /lib/rc/bin/${_e} \"\$@\"; _r=$?; \
|
|
|
|
export EINFO_LASTCMD=${_e}; return \$_r; }"
|
|
|
|
done
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|