From bd07eb14dd90d34745ab0ce8a2f31d2875109aea Mon Sep 17 00:00:00 2001 From: cajus Date: Tue, 10 Jul 2007 12:55:10 +0000 Subject: [PATCH] Removed obsolete config fixing git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6810 594d385d-05f5-0310-b6e9-bd551577e9d8 --- contrib/fix_config.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 contrib/fix_config.sh 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 -- 2.30.2