mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
352 B

  1. #!/bin/sh
  2. #
  3. # ROCK Linux: /etc/rc.d/init.d/pbbuttons
  4. #
  5. # Desc: laptop special feature deamon
  6. # Runlevel: 85 rcX rc2 rc3
  7. #
  8. main_begin
  9. block_begin(start, `Starting pbbuttonsd.')
  10. check(`D_prefix/bin/pbbuttonsd -d')
  11. block_end
  12. block_begin(stop, `Stopping pbbuttonsd.')
  13. check(`killall -15 pbbuttonsd')
  14. block_end
  15. main_end