%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/lsb/init-functions.d/ |
Upload File : |
# Default info blocks put to the left of the screen
log_daemon_msg_pre () {
if log_use_fancy_output; then
echo -n "[....] " || true
fi
}
log_begin_msg_pre () {
log_daemon_msg_pre "$@"
}
log_end_msg_pre () {
if log_use_fancy_output; then
RED=$( $TPUT setaf 1)
GREEN=$( $TPUT setaf 2)
YELLOW=$( $TPUT setaf 3)
NORMAL=$( $TPUT op)
$TPUT civis || true
$TPUT sc && \
$TPUT hpa 0 && \
if [ $1 -eq 0 ]; then
/bin/echo -ne "[${GREEN} ok ${NORMAL}" || true
elif [ $1 -eq 255 ]; then
/bin/echo -ne "[${YELLOW}warn${NORMAL}" || true
else
/bin/echo -ne "[${RED}FAIL${NORMAL}" || true
fi && \
$TPUT rc || true
$TPUT cnorm || true
fi
}
log_action_msg_pre () {
if log_use_fancy_output; then
CYAN=$( $TPUT setaf 6)
NORMAL=$( $TPUT op)
/bin/echo -ne "[${CYAN}info${NORMAL}] " || true
fi
}
log_action_begin_msg_pre () {
log_daemon_msg_pre "$@"
}
log_action_end_msg_pre () {
log_end_msg_pre "$@"
}