From: cajus Date: Tue, 10 Jul 2007 12:55:10 +0000 (+0000) Subject: Removed obsolete config fixing X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bd07eb14dd90d34745ab0ce8a2f31d2875109aea;p=gosa.git Removed obsolete config fixing git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6810 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/contrib/fix_config.sh b/contrib/fix_config.sh deleted file mode 100755 index b17fd7ab5..000000000 --- a/contrib/fix_config.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -CONF=/etc/gosa/gosa.conf -cat << EOF - -This script will take your current $CONF and will update the menu and tab tags. It -will not touch the parts you have touched between the main tabs. A backup copy is -created. - -EOF -read -n1 -sp "Do you want to continue? (y/n)" answer -echo - -if [ "$answer" != "y" -a "$answer" != "Y" ]; then - echo "Aborted." - echo - exit 1 -fi - -if [ ! -f $CONF ]; then - echo "Can't find $CONF Aborted." - echo - exit 1 -fi - -cp $CONF $CONF.orig - -sed '/
/d;/<\/conf>/d' gosa.conf > $CONF -sed -n '/
/p' $CONF.orig >> $CONF -echo '' >> $CONF