1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00
openmptcprouter-feeds/luci-app-usb-printer/root/etc/init.d/usb_printer
2022-01-06 02:24:26 +08:00

22 lines
328 B
Bash
Executable file

#!/bin/sh /etc/rc.common
# Copyright (C) 2005-2013 NowRush Studio
# Author: hackpascal <hackpascal@gmail.com>
START=70
stop() {
killall p910nd 2>/dev/null
}
start() {
for lps in `/usr/bin/detectlp`; do
product=`echo $lps | cut -d , -f 2`
/usr/bin/usb_printer_hotplug "$product" add
done
}
restart() {
stop
start
}