#!/bin/bash #Automatische Generierung von glibc #Script Framework - Automatisiertes Erzeugen der Monsum Linux Distribution #(c) Rainmaker MultiMedia OHG # #$Author$ #$Date$ #$Revision$ # #$Log$ #Revision 1.4 2006/05/28 21:49:18 segler #eine tilde zuviel # #Revision 1.3 2006/05/28 21:37:39 segler #chmod apache changed to chmod apache2 # #Revision 1.2 2006/05/23 12:08:05 segler #apache wird zu apache2 # #Revision 1.1.1.1 2006/05/11 09:22:16 kueller #Apache2 archive kommt als httpd daher - neues module, neue initialisierungs addons # #Revision 1.3 2001/10/17 08:16:53 kueller #Berechtigungen (start/stop Script) werden richtig gesetzt # #Revision 1.2 2001/10/08 08:38:19 kueller #Header hinzugefügt, bzw. korrigiert # # if [ -d /var/install/sysvinit* ]; then WDIR=`pwd` cd etc/init.d chmod 755 apache2 mkdir rc{0,1,2,3,4,5,6}.d for i in 0 1 6; do cd rc$i.d ln -s ../apache2 K02apache2 cd .. done for i in 2 3 4 5; do cd rc$i.d ln -s ../apache2 S21apache2 cd .. done cd $WDIR fi