summaryrefslogtreecommitdiff
path: root/pcr/openrc-net/saslauthd2.rc7
diff options
context:
space:
mode:
authorfreaj <freaj@riseup.net>2015-03-30 10:08:17 +0200
committerfreaj <freaj@riseup.net>2015-03-30 10:08:17 +0200
commit41c9dc8729840f45f174a14a08703e04d1f5717e (patch)
treefeddfb083b443556f04bac84c6519d356e061854 /pcr/openrc-net/saslauthd2.rc7
parent7f0385668a7eb0caf6a74f13d10c1fda5c7ad86d (diff)
openrc-net: add new package to [pcr]
Diffstat (limited to 'pcr/openrc-net/saslauthd2.rc7')
-rw-r--r--pcr/openrc-net/saslauthd2.rc721
1 files changed, 21 insertions, 0 deletions
diff --git a/pcr/openrc-net/saslauthd2.rc7 b/pcr/openrc-net/saslauthd2.rc7
new file mode 100644
index 000000000..d6b453e92
--- /dev/null
+++ b/pcr/openrc-net/saslauthd2.rc7
@@ -0,0 +1,21 @@
+#!/sbin/runscript
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/files/saslauthd2.rc7,v 1.1 2013/07/13 12:01:10 pacho Exp $
+
+depend() {
+ need net
+}
+
+start() {
+ ebegin "Starting saslauthd"
+ start-stop-daemon --start --quiet --exec /usr/sbin/saslauthd \
+ -- ${SASLAUTHD_OPTS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping saslauthd"
+ start-stop-daemon --stop --quiet --pidfile /run/saslauthd/saslauthd.pid
+ eend $?
+}