--- runscript.sh 2007-06-26 02:41:21.000000000 +0200 +++ /sbin/runscript.sh 2007-07-24 14:58:15.867441265 +0200 @@ -8,7 +8,10 @@ [[ ${RC_GOT_FUNCTIONS} != "yes" ]] && source /sbin/functions.sh # User must be root to run most script stuff (except status) -if [[ ${EUID} != "0" ]] && ! [[ $2 == "status" && $# -eq 2 ]] ; then +if [[ ${EUID} != "0" ]] && ! [[ $2 == "status" && $# -eq 2 ]] && \ + ! [[ $2 == "--quiet" && $3 == "status" && $# -eq 3 ]] && \ + ! [[ $3 == "--quiet" && $2 == "status" && $# -eq 3 ]] \ + ; then eerror "$0: must be root to run init scripts" exit 1 fi