diff options
Diffstat (limited to 'net-misc/siproxd/files')
-rw-r--r-- | net-misc/siproxd/files/siproxd-libtool-2.2.patch | 12 | ||||
-rwxr-xr-x | net-misc/siproxd/files/siproxd.rc7 | 31 |
2 files changed, 31 insertions, 12 deletions
diff --git a/net-misc/siproxd/files/siproxd-libtool-2.2.patch b/net-misc/siproxd/files/siproxd-libtool-2.2.patch deleted file mode 100644 index 6210ef0d7618..000000000000 --- a/net-misc/siproxd/files/siproxd-libtool-2.2.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -r -U 2 a/src/plugins.h b/src/plugins.h ---- a/src/plugins.h 2010-01-07 12:44:38.000000000 +0100 -+++ b/src/plugins.h 2010-06-19 13:56:30.960679284 +0200 -@@ -25,4 +25,8 @@ - - -+#ifndef lt__PROGRAM__LTX_preloaded_symbols -+#define lt__PROGRAM__LTX_preloaded_symbols lt_libltdl_LTX_preloaded_symbols -+#endif -+ - /* Plugins must return STS_SUCCESS / SUCCESS_FAILURE */ - diff --git a/net-misc/siproxd/files/siproxd.rc7 b/net-misc/siproxd/files/siproxd.rc7 new file mode 100755 index 000000000000..b7eb2057448f --- /dev/null +++ b/net-misc/siproxd/files/siproxd.rc7 @@ -0,0 +1,31 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/files/siproxd.rc7,v 1.1 2013/03/20 17:19:50 chithanh Exp $ + +depend() { + need net +} + +check_config() { + if [[ ! -f /etc/siproxd.conf ]]; then + eerror "Please create /etc/siproxd.conf first!" + return 1 + fi + return 0 +} + +start() { + check_config || return 1 + checkpath -q -d /var/run/siproxd -o siproxd:siproxd + ebegin "Starting siproxd" + start-stop-daemon --start --exec /usr/sbin/siproxd -- \ + -p /var/run/siproxd/siproxd.pid -c /etc/siproxd.conf + eend $? +} + +stop() { + ebegin "Stopping siproxd" + start-stop-daemon --stop --pidfile /var/run/siproxd/siproxd.pid + eend $? +} |