#!/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() { printf "\r[$1]\n" } status_starting() { printf "[ ] Starting $1" } status_begin() { printf "[ ] $*" } status_stopping() { printf "[ ] Stopping $1" } status_ok() { printf "\r[ ${green}OK${off} ]\n" } status_fail() { printf "\r[${red}FAILED${off}]\n" } status_check() { test $? -eq 0 && status_ok || status_fail } is_true() { [ "$1" = "1" ] || [ "$1" = "yes" ] || [ "$1" = "true" ] || [ "$1" = "y" ] || [ "$1" = "t" ] }