15 lines
256 B
Plaintext
Raw Normal View History

2025-05-10 21:58:58 +08:00
#!/bin/sh
#
case "$1" in
start)
modprobe pfe
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac