2025-05-10 21:58:58 +08:00

15 lines
256 B
Bash
Executable File

#!/bin/sh
#
case "$1" in
start)
modprobe pfe
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac