GCLog/openwrt/gclogd
2018-04-08 21:34:42 +02:00

16 lines
207 B
Bash
Executable file

#!/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
}