HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/lib/lsb/init-functions.d/
Upload File :
Current File : //proc/self/root/usr/lib/lsb/init-functions.d/00-verbose
vlog_daemon_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_daemon_msg "$@"
	else
		true
	fi
}

vlog_begin_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_begin_msg "$@"
	else
		true
	fi
}

vlog_action_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_msg "$@"
	else
		true
	fi
}

vlog_action_begin_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_begin_msg "$@"
	else
		true
	fi
}

vlog_action_end_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_end_msg "$@"
	else
		true
	fi
}


vlog_end_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_end_msg "$@"
	else
		return ${1:-1}
	fi
}