From: Heiko Z. <smi...@us...> - 2010-12-29 15:17:55
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28725/scripts Added Files: mod_authn_otp Log Message: added mod_authn_otp 1.1.1 --- NEW FILE: mod_authn_otp --- #!/bin/bash # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_HTTPD" = "y" ]; then if [ "$CONFIG_MOD_AUTHN_OTP" = "y" ]; then ./configure make || exit 1 strip_debug fi fi ;; install ) if [ "$CONFIG_HTTPD" = "y" ]; then if [ "$CONFIG_MOD_AUTHN_OTP" = "y" ]; then make install DESTDIR=$CDDIR || exit 1 fi fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |