smartd.init 217 B

12345678910111213141516
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2011 OpenWrt.org
  3. START=95
  4. start() {
  5. service_start /usr/sbin/smartd -q never
  6. }
  7. stop() {
  8. service_stop /usr/sbin/smartd
  9. }
  10. reload() {
  11. service_reload /usr/sbin/smartd
  12. }