mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
gkrellmd: Adopt from oldpackages repo, Update to 2.3.10
Adopt the package from the oldpackages repo at https://git.archive.openwrt.org/$ Update to version 2.3.10 (released Nov 2016) Update source URL Depend only on GLib2, not glib1.2 Signed-off-by: Peter Denison <openwrt@marshadder.org>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2007 OpenWrt.org
|
||||
|
||||
START=60
|
||||
BIN=gkrellmd
|
||||
RUN_D=/var/run
|
||||
PID_F=$RUN_D/$BIN.pid
|
||||
|
||||
start() {
|
||||
mkdir -p $RUN_D
|
||||
$BIN $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||
}
|
||||
Reference in New Issue
Block a user