mountd.init 219 B

12345678910111213141516171819
  1. #!/bin/sh /etc/rc.common
  2. START=80
  3. SERVICE_DAEMONIZE=1
  4. SERVICE_WRITE_PID=1
  5. SERVICE_PID_FILE=/var/run/mountd.pid
  6. MOUNTD_BIN=/sbin/mountd
  7. start()
  8. {
  9. service_start $MOUNTD_BIN -f
  10. }
  11. stop()
  12. {
  13. service_stop $MOUNTD_BIN
  14. }