#!/bin/sh if [ "$USE_COLOR" = '1' ] && [ -x /usr/bin/tput ]; then red=$(tput setaf 1) green=$(tput setaf 2) off=$(tput sgr0) fi status_msg() { echo "\r[$1]" } status_starting() { echo -n "[ ] Starting $1" } status_begin() { echo -n "[ ] $*" } status_stopping() { echo -n "[ ] Stopping $1" } status_ok() { echo "\r[ ${green}OK$off ]" } status_fail() { echo "\r[FAILED]" } status_check() { test $? -eq 0 && status_ok || status_fail } is_true() { [ "$1" = "1" ] || [ "$1" = "yes" ] || [ "$1" = "true" ] || [ "$1" = "y" ] || [ "$1" = "t" ] }