Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv24031
Added Files:
mod_authnz_external mod_authz_unixgroup pwauth
Log Message:
- added mod_authnz_external 3.2.6
- added mod_authz_unixgroup 1.0.3
- added pwauth 2.3.10
--- NEW FILE: mod_authz_unixgroup ---
#!/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
apxs -c mod_authz_unixgroup.c || exit 1
fi
;;
install )
if [ "$CONFIG_HTTPD" = "y" ]; then
# specifying the prefix doesn't work currently
#apxs -S prefix=$CDDIR -i -a mod_authz_unixgroup.la || exit 1
cp -v .libs/mod_authz_unixgroup.so $CDDIR/usr/lib/apache2/modules/ || exit 1
fi
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
--- NEW FILE: pwauth ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/pwauth,v $
# $Revision: 1.1 $
# $Date: 2012/04/29 13:44:32 $
#
# 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
MYNAME=APACHE2
case $1 in
build )
if [ "$CONFIG_HTTPD" = "y" ]; then
make || exit 1
fi
;;
install )
if [ "$CONFIG_HTTPD" = "y" ]; then
cp -v pwauth $CDDIR/usr/sbin || exit 1
cp -v unixgroup $CDDIR/usr/sbin || exit 1
fi
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
--- NEW FILE: mod_authnz_external ---
#!/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
apxs -c mod_authnz_external.c || exit 1
fi
;;
install )
if [ "$CONFIG_HTTPD" = "y" ]; then
# specifying the prefix doesn't work currently
#apxs -S prefix=$CDDIR -i -a mod_authnz_external.la || exit 1
cp -v .libs/mod_authnz_external.so $CDDIR/usr/lib/apache2/modules/ || exit 1
fi
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
|