From c6c051e598b7e553b0e28ccb12780d33cd84399e Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Fri, 25 Jul 2003 17:11:15 +0000 Subject: Fix output from an error message. Use sysctl -n instead of sed Submitted by: Scott Lambert --- usr.sbin/zzz/zzz.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/zzz/zzz.sh b/usr.sbin/zzz/zzz.sh index 770815358109..ef9527bb76b3 100644 --- a/usr.sbin/zzz/zzz.sh +++ b/usr.sbin/zzz/zzz.sh @@ -18,19 +18,19 @@ APM_SUSPEND_DELAY=machdep.apm_suspend_delay # Check for ACPI support if sysctl $ACPI_SUSPEND_STATE >/dev/null 2>&1; then # Get configured suspend state - SUSPEND_STATE=`sysctl $ACPI_SUSPEND_STATE | sed 's|^.*: S||'` + SUSPEND_STATE=`sysctl -n $ACPI_SUSPEND_STATE ` # Get list of supported suspend states - SUPPORTED_STATES=`sysctl $ACPI_SUPPORTED_STATES | sed 's|^.*: ||'` + SUPPORTED_STATES=`sysctl -n $ACPI_SUPPORTED_STATES ` # Check if the configured suspend state is supported by the system - if echo $SUPPORTED_STATES | grep S$SUSPEND_STATE >/dev/null; then + if echo $SUPPORTED_STATES | grep $SUSPEND_STATE >/dev/null; then # execute ACPI style suspend command exec acpiconf -s $SUSPEND_STATE else - echo -n "Requested suspend state S$ACPI_SUSPEND_STATE " + echo -n "Requested suspend state $SUSPEND_STATE " echo -n "is not supported. " - echo "Supported states: $ACPI_SUPPORTED_STATES" + echo "Supported states: $SUPPORTED_STATES" fi # Check for APM support elif sysctl $APM_SUSPEND_DELAY >/dev/null 2>&1; then -- cgit v1.2.3