acpid.initd 436 B

1234567891011121314151617181920
  1. #!/sbin/openrc-run
  2. # Copyright 1999-2016 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. extra_started_commands="reload"
  5. command="/usr/sbin/acpid"
  6. command_args="${ACPID_ARGS}"
  7. description="Daemon for Advanced Configuration and Power Interface"
  8. depend() {
  9. need localmount
  10. use logger
  11. }
  12. reload() {
  13. ebegin "Reloading acpid configuration"
  14. start-stop-daemon --exec $command --signal HUP
  15. eend $?
  16. }