]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
committing changes in /etc after emerge run
authorfrank <frank@bruni.home.brehm-online.com>
Mon, 16 Jan 2012 19:20:24 +0000 (20:20 +0100)
committerFrank Brehm <root@bruni.home.brehm-online.com>
Mon, 16 Jan 2012 19:20:24 +0000 (20:20 +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 c06a5e87730455d56554ebd612ba1d0e96e222c6..307556544a7f89b0b5c6ee4b3282d9cfd55c2601 100755 (executable)
@@ -184,6 +184,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/radvd'
+maybe chmod 0644 './conf.d/rpcbind'
 maybe chmod 0644 './conf.d/rsyncd'
 maybe chmod 0644 './conf.d/samba'
 maybe chmod 0644 './conf.d/saslauthd'
@@ -660,6 +661,7 @@ maybe chmod 0755 './init.d/pydoc-3.1'
 maybe chmod 0755 './init.d/radvd'
 maybe chmod 0755 './init.d/reboot.sh'
 maybe chmod 0755 './init.d/root'
+maybe chmod 0755 './init.d/rpcbind'
 maybe chmod 0755 './init.d/rsyncd'
 maybe chmod 0755 './init.d/samba'
 maybe chmod 0755 './init.d/saslauthd'
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 $?
+}