home *** CD-ROM | disk | FTP | other *** search
/ tusportal.tus.k12.pa.us / tusportal.tus.k12.pa.us.tar / tusportal.tus.k12.pa.us / Wyse / latest-image.raw / 0.img / usr / lib / hal / scripts / hal-system-killswitch-set-power < prev    next >
Text File  |  2010-05-09  |  767b  |  26 lines

  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2007 Bastien Nocera <bnocera@redhat.com>
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9.  
  10. . hal-functions
  11.  
  12. # Check for environment variables
  13. if [ -z "$HAL_PROP_KILLSWITCH_ACCESS_METHOD" ] ; then
  14.         echo "org.freedesktop.Hal.Device.UnknownError" >&2
  15.         echo "Missing or empty environment variable(s)." >&2
  16.         echo "This script should be started by hald." >&2
  17.         exit 1
  18. fi
  19.  
  20. # read value for setting power
  21. read value
  22. export value
  23.  
  24. hal_check_priv org.freedesktop.hal.killswitch.$HAL_PROP_KILLSWITCH_TYPE
  25. hal_exec_backend
  26.