File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / scripts / apache / apconf-conv.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 6 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

#!/bin/sh

if [ "$1" = "" ]; then
	echo "Usage: $0 /somewhere/httpd.conf"
	exit 1
fi

if [ ! -w $1 ]; then
	echo "You cannot write to $1"
	exit 1
fi

TMPFILE=tmpfile.$$

awk -f conffix.awk <$1 >$TMPFILE

if [ "$?" != 0 ]; then
	exit 1
fi

mv -f $1 $1.orig
mv -f $TMPFILE $1
exit 0


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>