S09modload 256 B

1234567891011121314
  1. #!/bin/sh
  2. #
  3. case "$1" in
  4. start)
  5. modprobe pfe
  6. ;;
  7. stop)
  8. ;;
  9. restart|reload)
  10. ;;
  11. *)
  12. echo "Usage: $0 {start|stop|restart}"
  13. exit 1
  14. esac