--- mcore-src/trunk/mcore-tools/daemon/client/include/system.client.class 2011/02/17 21:16:24 1345 +++ mcore-src/trunk/mcore-tools/daemon/client/include/system.client.class 2011/03/10 18:15:47 1648 @@ -91,7 +91,7 @@ if [[ ! -x /etc/rc.d/init.d/${service} ]] then - mecho "Service '${service}' unkown!" + eecho "Service '${service}' unkown!" fi case "${command}" in @@ -146,7 +146,7 @@ { local tty tty="$(fgconsole)" - mecho "${tty}" + rvecho "${tty}" } get_system_autologon() @@ -154,8 +154,8 @@ local var var=$(grep auto_login /etc/slim.conf | sed 's:auto_login.*\([yn].*\):\1:') case "${var}" in - yes) mecho "autologon currently enabled" ;; - no) mecho "autologon currently disabled" ;; + yes) mecho "autologon currently enabled"; rvecho "1" ;; + no) mecho "autologon currently disabled"; rvecho "0" ;; *) eecho "unkown state" ;; esac }