2157c962c5
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10734 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
328 B
Bash
16 lines
328 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
START=50
|
|
|
|
start() {
|
|
killall -q click
|
|
cp /usr/bin/srcr.click /tmp
|
|
sh /usr/bin/gen_config_roofnet.sh > /tmp/unaligned.click
|
|
click-align /tmp/unaligned.click > /tmp/roofnet.click
|
|
/usr/bin/click /tmp/roofnet.click > /tmp/roofnet.log 2>&1 &
|
|
}
|
|
|
|
stop() {
|
|
killall click
|
|
}
|