Revision 51dc84643fbbe16f6b3ca938a013df59ff766b5e authored by Philippe Canal on 21 May 2024, 19:16:57 UTC, committed by Philippe Canal on 23 May 2024, 17:56:10 UTC
1 parent 27b1cd2
Raw File
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