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.

22 lines
153 B

  1. #!/bin/sh /etc/rc.common
  2. START=50
  3. reload()
  4. {
  5. /usr/lib/sqm/run.sh start
  6. }
  7. restart()
  8. {
  9. reload
  10. }
  11. start()
  12. {
  13. reload
  14. }
  15. stop()
  16. {
  17. /usr/lib/sqm/run.sh stop
  18. }