summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-26 22:53:40 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-26 22:53:40 +0000
commite38815b4f1b02d4ac305fcdfb517cea5e0b15886 (patch)
tree2c6feaf4789638bc127b8a35c17a93a477329d0c /net-misc/sobby/files
parentRemove old. (diff)
downloadgentoo-2-e38815b4f1b02d4ac305fcdfb517cea5e0b15886.tar.gz
gentoo-2-e38815b4f1b02d4ac305fcdfb517cea5e0b15886.tar.bz2
gentoo-2-e38815b4f1b02d4ac305fcdfb517cea5e0b15886.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-misc/sobby/files')
-rw-r--r--net-misc/sobby/files/sobby-conf-0.4.310
-rwxr-xr-xnet-misc/sobby/files/sobby-init-0.4.320
2 files changed, 0 insertions, 30 deletions
diff --git a/net-misc/sobby/files/sobby-conf-0.4.3 b/net-misc/sobby/files/sobby-conf-0.4.3
deleted file mode 100644
index 9118b1721aec..000000000000
--- a/net-misc/sobby/files/sobby-conf-0.4.3
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sobby/files/sobby-conf-0.4.3,v 1.1 2007/08/18 23:00:42 dev-zero Exp $
-
-# Options to pass to the sobby process
-# -n --name Published server name
-# -p --port Port to runt the obby server on (default: 6522)
-# --password Global password required to join the session
-
-SOBBY_OPTS="--password secret -n gentoo-obby -p 6522"
diff --git a/net-misc/sobby/files/sobby-init-0.4.3 b/net-misc/sobby/files/sobby-init-0.4.3
deleted file mode 100755
index 189e0b35c38f..000000000000
--- a/net-misc/sobby/files/sobby-init-0.4.3
+++ /dev/null
@@ -1,20 +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/net-misc/sobby/files/sobby-init-0.4.3,v 1.1 2007/08/18 23:00:42 dev-zero Exp $
-
-depend() {
- use avahi
-}
-
-start() {
- ebegin "Starting obby dedicated server"
- start-stop-daemon -b --quiet --start --exec /usr/bin/sobby -- ${SOBBY_OPTS}
- eend $? "Failed to start sobby"
-}
-
-stop() {
- ebegin "Stopping obby dedicated server"
- start-stop-daemon --stop --quiet --exec /usr/bin/sobby
- eend $? "Failed to stop sobby"
-}