https://github.com/root-project/root
Raw File
Tip revision: 5a40771429bda0b7ff44de9b04aad11ecb4b052c authored by Pere Mato on 22 June 2016, 12:40:00 UTC
Update ROOT version files to v6.04/18.
Tip revision: 5a40771
xproofd.in
#!/bin/sh

#
# $Id$
#
# Template for the xproofd wrapper script.
# The xproofd wrapper script is used uniformy the interface to xproofd after the modifications
# occured in XRootD version 4, when export for the XRootD main has been suppressed and the 
# possibility to load a different default protocol in 'xrootd' added.
#
# The wrapper runs xrootd prepending to the standard xrootd commands the switches
#                    '-P xproofd -L <path>/libXrdProofd'
#

XRDEXEC=`which xrootd`
if [ "x$XRDEXEC" != "x" ]; then
   $XRDEXEC -P xproofd -p 1093 -L @libdir@/libXrdProofd.so "$@"
else
   echo "xrootd not found!"
   exit 1
fi

exit 0
back to top