[Fedora-directory-commits] ldapserver/wrappers dbscan.in, NONE, 1.1 ds_newinst.in, NONE, 1.1 dsktune.in, NONE, 1.1 infadd.in, NONE, 1.1 ldap-agent.in, NONE, 1.1 ldclt.in, NONE, 1.1 ldif.in, NONE, 1.1 migratecred.in, NONE, 1.1 mmldif.in, NONE, 1.1 pwdhash.in, NONE, 1.1 rsearch.in, NONE, 1.1

Nathan Kinder (nkinder) fedora-directory-commits at redhat.com
Tue Oct 24 21:11:10 UTC 2006


Author: nkinder

Update of /cvs/dirsec/ldapserver/wrappers
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20714/wrappers

Added Files:
	dbscan.in ds_newinst.in dsktune.in infadd.in ldap-agent.in 
	ldclt.in ldif.in migratecred.in mmldif.in pwdhash.in 
	rsearch.in 
Log Message:
Resolves: 212038

Make configure create program wrapper scripts.



--- NEW FILE dbscan.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nspr_libdir@:@db_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=dbscan-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE ds_newinst.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@:@prefix@@serverdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=ds_newinst-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE dsktune.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=
BIN_DIR=@prefix@@serverdir@
COMMAND=dsktune-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE infadd.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@bindir@
COMMAND=infadd-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE ldap-agent.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@netsnmp_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=ldap-agent-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE ldclt.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@bindir@
COMMAND=ldclt-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE ldif.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=ldif-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE migratecred.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=migratecred-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE mmldif.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=mmldif-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE pwdhash.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@serverdir@
COMMAND=pwdhash-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255



--- NEW FILE rsearch.in ---
#!/bin/sh
 
###############################################################################
##  (1) Specify variables used by this script.                               ##
###############################################################################

LIB_DIR=@nss_libdir@:@nspr_libdir@:@ldapsdk_libdir@:@sasl_libdir@
BIN_DIR=@prefix@@bindir@
COMMAND=rsearch-bin


###############################################################################
##  (2) Set the LD_LIBRARY_PATH environment variable to determine the        ##
##      search order this command wrapper uses to find shared libraries.     ##
###############################################################################

LD_LIBRARY_PATH=${LIB_DIR}
export LD_LIBRARY_PATH


###############################################################################
##  (3) Set the PATH environment variable to determine the search            ##
##      order this command wrapper uses to find binary executables.          ##
##                                                                           ##
##      NOTE:  Since the wrappers themselves are ALWAYS located in           ##
##             "/usr/bin", this directory will always be excluded            ##
##             from the search path.  Since "/bin" is nothing more           ##
##             than a symbolic link to "/usr/bin" on Solaris, this           ##
##             directory will also always be excluded from the search        ##
##             path on this platform.                                        ##
###############################################################################

PATH=${BIN_DIR}
export PATH


###############################################################################
##  (4) Execute the binary executable specified by this command wrapper      ##
##      based upon the preset LD_LIBRARY_PATH and PATH environment variables.##
###############################################################################

ORIGINAL_IFS=${IFS}
IFS=:

for dir in ${PATH}
do
	if [ -x ${dir}/${COMMAND} ]
	then
		IFS=${ORIGINAL_IFS}
		${dir}/${COMMAND} "$@"
		exit $?
	fi
done

echo "Unable to find \"${COMMAND}\" in \"${PATH}\"!"

exit 255





More information about the Fedora-directory-commits mailing list