mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2025-01-15 19:15:17 +00:00
14 lines
182 B
Bash
Executable File
14 lines
182 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
START=91
|
|
STOP=91
|
|
|
|
# Openwrt init script. It just runs and stops the kernel module.
|
|
|
|
start() {
|
|
modprobe kyoutubeUnblock
|
|
}
|
|
|
|
stop() {
|
|
rmmod kyoutubeUnblock
|
|
}
|