summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston A. Elder <prez@gentoo.org>2002-06-13 17:17:53 +0000
committerPreston A. Elder <prez@gentoo.org>2002-06-13 17:17:53 +0000
commitf69956960d36dc5edc4ae7c68f943bcc0ba677af (patch)
tree8f972ce0158347646630c6fbd7c0b948f2c358ae /net-news/inn/files
parentnew version of devel version (diff)
downloadgentoo-2-f69956960d36dc5edc4ae7c68f943bcc0ba677af.tar.gz
gentoo-2-f69956960d36dc5edc4ae7c68f943bcc0ba677af.tar.bz2
gentoo-2-f69956960d36dc5edc4ae7c68f943bcc0ba677af.zip
Added INN
Diffstat (limited to 'net-news/inn/files')
-rw-r--r--net-news/inn/files/digest-inn-2.3.31
-rw-r--r--net-news/inn/files/innd20
2 files changed, 21 insertions, 0 deletions
diff --git a/net-news/inn/files/digest-inn-2.3.3 b/net-news/inn/files/digest-inn-2.3.3
new file mode 100644
index 000000000000..cf98e1894daf
--- /dev/null
+++ b/net-news/inn/files/digest-inn-2.3.3
@@ -0,0 +1 @@
+MD5 97080ce1dcdc5fe8f3dacd230c9d4a0a inn-2.3.3.tar.gz 1413433
diff --git a/net-news/inn/files/innd b/net-news/inn/files/innd
new file mode 100644
index 000000000000..e6d8c6af7de1
--- /dev/null
+++ b/net-news/inn/files/innd
@@ -0,0 +1,20 @@
+#!/sbin/runscript
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# /space/gentoo/cvsroot/gentoo-x86/net-misc/bind/files/named.rc6,v 1.4 2002/06/01 16:31:07 nitro Exp
+
+depend() {
+ need net
+}
+
+start() {
+ ebegin "Starting innd"
+ start-stop-daemon --start --quiet --chuid news:news --exec /usr/lib/news/bin/innd
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping innd"
+ start-stop-daemon --stop --quiet --pidfile /var/run/innd.pid
+ eend $?
+}