diff options
Diffstat (limited to 'games-server/hlstats/files')
-rw-r--r-- | games-server/hlstats/files/digest-hlstats-1.32 | 3 | ||||
-rw-r--r-- | games-server/hlstats/files/hlstats | 7 | ||||
-rw-r--r-- | games-server/hlstats/files/hlstats.rc | 23 |
3 files changed, 0 insertions, 33 deletions
diff --git a/games-server/hlstats/files/digest-hlstats-1.32 b/games-server/hlstats/files/digest-hlstats-1.32 deleted file mode 100644 index 6958d44c7f1a..000000000000 --- a/games-server/hlstats/files/digest-hlstats-1.32 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 4b683fed5b4b7a112a150cc51b6d8c67 hlstats-1.32.tar.gz 2067107 -RMD160 687f39274779d579c627b72f6372cd9d7bbe8425 hlstats-1.32.tar.gz 2067107 -SHA256 8600bf18404b461a012a8ce77dfaf9523b70464e2dbe401100a0e7ad00c43189 hlstats-1.32.tar.gz 2067107 diff --git a/games-server/hlstats/files/hlstats b/games-server/hlstats/files/hlstats deleted file mode 100644 index e67f5f55cafa..000000000000 --- a/games-server/hlstats/files/hlstats +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -while :; do - GENTOO_DIR/hlstats.pl 2>1 >> /var/log/hlstats.log - echo >> /var/log/hlstats.log - sleep 5 -done diff --git a/games-server/hlstats/files/hlstats.rc b/games-server/hlstats/files/hlstats.rc deleted file mode 100644 index 5bed5ab291b1..000000000000 --- a/games-server/hlstats/files/hlstats.rc +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-server/hlstats/files/hlstats.rc,v 1.2 2004/07/14 22:22:45 agriffis Exp $ - -depend() { - need mysql -} - -start() { - ebegin "Starting hlstats" - /usr/bin/hlstats & - local ret=$? - echo $! > /var/run/hlstats.pid - eend ${ret} -} - -stop() { - ebegin "Stopping hlstats" - local pid=$(</var/run/hlstats.pid) - [ ! -z "${pid}" ] && kill ${pid} - eend $? -} |