Skip to content

Commit

Permalink
rpcbind: a portmap like rpc broker daemon.
Browse files Browse the repository at this point in the history
  • Loading branch information
florin65 committed Jan 11, 2014
1 parent 849277d commit fe4159a
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions net/rpcbind/BUILD
@@ -0,0 +1,2 @@
./configure --prefix=/usr --with-rpcuser=rpc --enable-warmstarts --with-statedir=/run
default_make
1 change: 1 addition & 0 deletions net/rpcbind/DEPENDS
@@ -0,0 +1 @@
depends libtirpc
14 changes: 14 additions & 0 deletions net/rpcbind/DETAILS
@@ -0,0 +1,14 @@
MODULE=rpcbind
VERSION=0.2.1
SOURCE=$MODULE-$VERSION.tar.bz2
SOURCE_URL=$SFORGE_URL/$MODULE
SOURCE_VFY=sha1:d1ca8ce155d98d4f1c1dd40fa747a2144a42cb61
WEB_SITE=http://rpcbind.sourceforge.net
SHORT="portmap replacement which supports RPC over various protocols"
ENTERED=20140111
UPDATED=20140111

cat << EOF
The rpcbind utility is a server that converts RPC program numbers into universal
addresses.
EOF
11 changes: 11 additions & 0 deletions net/rpcbind/init.d/rpcbind
@@ -0,0 +1,11 @@
#!/bin/sh
#
# rpcbind
#
# chkconfig: 345 11 89
# description: the rpcbind is a RPC port broker
# processname: /usr/bin/rpcbind
#

. /lib/lsb/init-functions

13 changes: 13 additions & 0 deletions net/rpcbind/systemd.d/rpcbind.service
@@ -0,0 +1,13 @@
[Unit]
Description=RPC Bind
After=network.target
Wants=rpcbind.target
Before=rpcbind.target

[Service]
Type=forking
ExecStart=/usr/bin/rpcbind
Restart=always

[Install]
WantedBy=multi-user.target

0 comments on commit fe4159a

Please sign in to comment.