Viitor_httpd/tmp/postinstall
kueller 9ac27c3a82 Neue Version V963
git-svn-id: svn://svn.compuextreme.de/Viitor/V963/Viitor_httpd@5933 504e572c-2e33-0410-9681-be2bf7408885
2011-01-03 10:48:06 +00:00

65 lines
2.0 KiB
Bash

#!/bin/bash
#Framework, welches ein komplettes Linux System aus den Sourcen erstellt
#dieses Framework wird im CVS Repository
#:pserver:cvs.rainmaker-mm.de/RMM/cvs zur Verfügung gestellt
#
#Lage dieser Datei im Archiv: $Source$
#
#(c) Rainmaker MultiMedia OHG
#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:
#postinstall für kde. Erzeugt für kdm die Einträge der bekannten
#windowmanager (derzeit: xfce, WMaker, Haze und kde3). Ausserdem
#werden die notwendigen Einträge für /etc/ld.so.conf erzeugt.
#
#Aufrufparameter:
#keine
#
#Letzte Änderung von: $Author$
#Datum der letzten Änderung: $Date$
#Version der Datei: $Revision$
#
#$Log$
#Revision 1.4 2007/04/29 12:21:56 kueller
#GID=27, UID=50 festgelegt
#
#Revision 1.3 2006/09/12 07:47:38 kueller
#Anpassung an 32 /64 Bit Viitor
#
#Revision 1.2 2006/06/28 08:38:26 segler
#Apache will unter User "www" Gruppe "www" laufen
#
#Revision 1.1.1.1 2006/05/11 09:22:16 kueller
#Apache2 archive kommt als httpd daher - neues module, neue initialisierungs addons
#
#
#/opt/kde/lib in ldconfig aufnehmen
LIBINST=`grep "/opt/apache2/lib" /etc/ld.so.conf`
if [ ! "$LIBINST" ]; then
echo "/opt/apache2/lib" >>/etc/ld.so.conf
if [ -d /opt/apache2/lib64 ]; then
echo "/opt/apache2/lib64" >>/etc/ld.so.conf
fi
fi
if ! getent group www; then
groupadd -g 27 www
fi
if ! getent passwd www; then
useradd -u 50 -g www -d /opt/apache2 -s /bin/false www
fi