Dr. Werner Fink 2014-06-03 12:56:14 +00:00 committed by Git OBS Bridge
parent eb9980846b
commit 83a4726236
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Jun 3 12:55:16 UTC 2014 - werner@suse.de
- Check if systemd is listen on local socket 111 to trigger the
start of the rpcbind.service on demand (bnc#860246)
-------------------------------------------------------------------
Wed May 14 02:40:01 UTC 2014 - nfbrown@suse.com

View File

@ -117,7 +117,9 @@ fi
check_portmap() {
# check if either portmap or rpcbind is running
if test -x /sbin/portmap && checkproc /sbin/portmap
if test -x /sbin/rpcinfo && /sbin/rpcinfo -a 0.0.0.0.0.111 -T tcp 100000 > /dev/null 2>&1
then true
elif test -x /sbin/portmap && checkproc /sbin/portmap
then true
elif test -x /sbin/rpcbind && checkproc /sbin/rpcbind
then true