First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

16
openwrt/gclogd Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh /etc/rc.common
# GCLOG init script
# Copyright (C) 2007 OpenWrt.org
START=99
STOP=20
start() {
echo start
/usr/bin/gclog -c /etc/gclog.conf
}
stop() {
echo stop
/usr/bin/killall gclog
}