Revision d536eb834b4eb9379c10bf3a7afc067a71492ddd authored by Philippe Canal on 09 April 2016, 23:09:21 UTC, committed by Philippe Canal on 21 June 2016, 20:33:12 UTC
1 parent 1fae2eb
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