From ef7baaa97069f14152c92be58b8f8bd5876f6b87 Mon Sep 17 00:00:00 2001 From: kueller Date: Mon, 3 Jan 2011 10:48:06 +0000 Subject: [PATCH] Neue Version V963 git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_php@5933 504e572c-2e33-0410-9681-be2bf7408885 --- tmp/postinstall | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 tmp/postinstall diff --git a/tmp/postinstall b/tmp/postinstall new file mode 100644 index 0000000..efd262f --- /dev/null +++ b/tmp/postinstall @@ -0,0 +1,56 @@ +#!/bin/bash +#Framework, welches ein komplettes Linux System aus den Sourcen erstellt +#dieses Framework wird im CVS Repository +#:pserver:www.compuextreme.de/Data/cvs zur Verfügung gestellt +# +#Lage dieser Datei im Archiv: $Source$ +# +#(c) 2003 by Harald Kueller +#This program is free software; you can redistribute it and/or +#modify ist under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version +#2 of the License, or (at your option) any later version. +# +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +#See the GNU General Public License for more details. +# +#You should have received a copy of the GNU General Public License +#along with this program; if not write to the Free Software Foundation, +#Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +#Beschreibung: +#Script, welches nach der phpinstallation die httpd.conf +#so modifiziert, das apache php läd. +# +#Aufrufparameter: +#keine +# +#Letzte Änderung von: $Author$ +#Datum der letzten Änderung: $Date$ +#Version der Datei: $Revision$ +# +#$Log$ +#Revision 1.5 2006/06/18 14:40:41 segler +#httpd.conf saved +# +#Revision 1.4 2006/05/23 13:59:20 segler +#AddType brauchen wir auch und php5 ist aktuell +# +#Revision 1.3 2003/11/12 09:50:19 kueller +#Bugfix im sed aufruf +# +#Revision 1.2 2003/11/12 09:14:12 kueller +#Kommentar anpassung. +# +#Revision 1.1.1.1 2003/11/12 09:13:13 kueller +#Initialisierung php/apache Module nach php installation +# +# + +if [ -f /etc/httpd/httpd.conf ]; then + sed -e "s/^# LoadModule.*foo_module.*modules\/mod_foo.so/# LoadModule foo_module modules\/mod_foo.so\n#\nLoadModule php5_module modules\/libphp5.so/;s/#AddOutputFilter.*INCLUDES.*\.shtml/#AddOutputFilter INCLUDES \.shtml\n\n AddType application\/x-httpd-php \.php/;s/DirectoryIndex/DirectoryIndex index.php/" /etc/httpd/httpd.conf >/tmp/httpd.conf + mv /etc/httpd/httpd.conf /etc/httpd/httpd.conf.orig.`date +%s` + mv /tmp/httpd.conf /etc/httpd/httpd.conf +fi