From: <bl...@us...> - 2003-10-25 09:53:01
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv21733/scripts Modified Files: thttpd Log Message: Add mime type for auto-config on old netscape browsers Index: thttpd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/thttpd,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- thttpd 13 Oct 2003 17:36:09 -0000 1.13 +++ thttpd 24 Oct 2003 17:27:34 -0000 1.14 @@ -29,6 +29,8 @@ case $1 in build ) if [ "$CONFIG_THTTPD" = "y" ]; then + [ $(grep -c ^proxy mime_types.txt) -eq 0 ] && + echo "proxy application/x-ns-proxy-autoconfig" >> mime_types.txt ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || exit 1 make $PMAKE all || exit 1 strip_debug @@ -37,8 +39,8 @@ install ) if [ "$CONFIG_THTTPD" = "y" ]; then - groupadd -g 103 www || exit 1 - useradd -u 30 -g www -s /bin/false www || exit 1 +# groupadd -g 103 www || exit 1 +# useradd -u 30 -g www -s /bin/false www || exit 1 rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/{sbin,man,www} || exit 1 |