]> Frank Brehm's Git Trees - config/samara/etc.git/commitdiff
committing changes in /etc after emerge run
authorfbrehm <fbrehm@samara.profitbricks.localdomain>
Mon, 20 Feb 2012 06:39:22 +0000 (07:39 +0100)
committerroot <root@samara.profitbricks.localdomain>
Mon, 20 Feb 2012 06:39:22 +0000 (07:39 +0100)
Package changes:
+net-nds/rpcbind-0.2.0

.etckeeper
conf.d/rpcbind [new file with mode: 0644]
init.d/rpcbind [new file with mode: 0755]

index c293c4ac8bded5cdbe4968e99ecd2108dc542265..b17317f3173e0579378d1738d00e81f216eaae97 100755 (executable)
@@ -212,6 +212,7 @@ maybe chmod 0644 './conf.d/pciparm'
 maybe chmod 0644 './conf.d/pydoc-2.7'
 maybe chmod 0644 './conf.d/pydoc-3.1'
 maybe chmod 0644 './conf.d/rfcomm'
+maybe chmod 0644 './conf.d/rpcbind'
 maybe chmod 0644 './conf.d/rsyncd'
 maybe chmod 0644 './conf.d/saslauthd'
 maybe chmod 0644 './conf.d/slapd'
@@ -814,6 +815,7 @@ maybe chmod 0755 './init.d/pydoc-3.1'
 maybe chmod 0755 './init.d/reboot.sh'
 maybe chmod 0755 './init.d/rfcomm'
 maybe chmod 0755 './init.d/root'
+maybe chmod 0755 './init.d/rpcbind'
 maybe chmod 0755 './init.d/rsyncd'
 maybe chmod 0755 './init.d/saslauthd'
 maybe chmod 0755 './init.d/savecache'
diff --git a/conf.d/rpcbind b/conf.d/rpcbind
new file mode 100644 (file)
index 0000000..ddc0917
--- /dev/null
@@ -0,0 +1,4 @@
+# /etc/conf.d/rpcbind
+# Options for `rpcbind`.
+#RPCBIND_OPTS="-l"
diff --git a/init.d/rpcbind b/init.d/rpcbind
new file mode 100755 (executable)
index 0000000..995ca71
--- /dev/null
@@ -0,0 +1,22 @@
+#!/sbin/runscript
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/files/rpcbind.initd,v 1.1 2007/12/29 09:13:55 vapier Exp $
+
+depend() {
+       use net
+       before inetd xinetd
+       provide portmap
+}
+
+start() {
+       ebegin "Starting rpcbind"
+       start-stop-daemon --start --quiet --exec /sbin/rpcbind -- ${RPCBIND_OPTS}
+       eend $?
+}
+
+stop() {
+       ebegin "Stopping rpcbind"
+       start-stop-daemon --stop --quiet --exec /sbin/rpcbind
+       eend $?
+}