diff options
Diffstat (limited to 'net-misc/sobby/files')
-rw-r--r-- | net-misc/sobby/files/sobby-conf-0.4.7 | 7 | ||||
-rwxr-xr-x | net-misc/sobby/files/sobby-init-0.4.7 | 22 | ||||
-rw-r--r-- | net-misc/sobby/files/sobby.xml | 14 |
3 files changed, 43 insertions, 0 deletions
diff --git a/net-misc/sobby/files/sobby-conf-0.4.7 b/net-misc/sobby/files/sobby-conf-0.4.7 new file mode 100644 index 000000000000..b60192c99616 --- /dev/null +++ b/net-misc/sobby/files/sobby-conf-0.4.7 @@ -0,0 +1,7 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +SOBBY_OPTS="-c /etc/sobby/sobby.xml" +SOBBY_USER="sobby" +SOBBY_GROUP="sobby" diff --git a/net-misc/sobby/files/sobby-init-0.4.7 b/net-misc/sobby/files/sobby-init-0.4.7 new file mode 100755 index 000000000000..a5ab6eecb0e6 --- /dev/null +++ b/net-misc/sobby/files/sobby-init-0.4.7 @@ -0,0 +1,22 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + use avahi +} + +start() { + ebegin "Starting obby dedicated server" + start-stop-daemon -b --quiet --start --make-pidfile \ + --pidfile /var/run/sobby.pid -u ${SOBBY_USER} -g ${SOBBY_GROUP} \ + --exec /usr/bin/sobby -- ${SOBBY_OPTS} + eend $? "Failed to start sobby" +} + +stop() { + ebegin "Stopping obby dedicated server" + start-stop-daemon --stop --quiet --pidfile /var/run/sobby.pid + eend $? "Failed to stop sobby" +} diff --git a/net-misc/sobby/files/sobby.xml b/net-misc/sobby/files/sobby.xml new file mode 100644 index 000000000000..b61a89f211e5 --- /dev/null +++ b/net-misc/sobby/files/sobby.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<sobby_config> + <settings> + <autosave_directory>/var/lib/sobby</autosave_directory> + <autosave_file>autosave.obby</autosave_file> + <autosave_interval>0</autosave_interval> + <command_directory></command_directory> + <name>Standalone obby server</name> + <password>secret</password> + <port>6522</port> + <post_save_hook></post_save_hook> + <session></session> + </settings> +</sobby_config> |