summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/etc/startgui
diff options
context:
space:
mode:
authorMichael Janczyk2008-06-02 14:55:57 +0200
committerMichael Janczyk2008-06-02 14:55:57 +0200
commitdd8f840f0bf3210924ca46655dd0217c83011c8d (patch)
tree88409e48eb80649c124f7fb59e2cff6fa8437234 /initramfs/initrd-stuff/etc/startgui
parentWrong name for checked in "dialog", updated Makefile for removed (diff)
downloadcore-dd8f840f0bf3210924ca46655dd0217c83011c8d.tar.gz
core-dd8f840f0bf3210924ca46655dd0217c83011c8d.tar.xz
core-dd8f840f0bf3210924ca46655dd0217c83011c8d.zip
Removed all kdm/gdm/xdm and most of X configuration. Before altering these file this step should be testet, so that painfull merging can be avoided. The files in initramfs/distro-specs and initramfs/initrd-stuff should be cleaned. Maybe we should drop support for a few older systems and refer to an older revision. Dhclinet config should be altered or removed since we do not use it anymore. Udhcp should be the default. Example line 267 in initrd-stuff/etc/functions, begins with: "# create configuration file for dhclient."
Removed obsolete theme plugin and the displaymanager themes from the themes dir in the repos. The themes (kdm/gdm) are located in the plugin dir anyway. git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1831 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/initrd-stuff/etc/startgui')
-rwxr-xr-xinitramfs/initrd-stuff/etc/startgui52
1 files changed, 0 insertions, 52 deletions
diff --git a/initramfs/initrd-stuff/etc/startgui b/initramfs/initrd-stuff/etc/startgui
deleted file mode 100755
index 37955a23..00000000
--- a/initramfs/initrd-stuff/etc/startgui
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-#
-# Description: startgui runs as script replacement for xinit
-#
-# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 19-05-2006
-# Michael Janczyk, 28-09-2007
-# Copyright: (c) 2003, 2007 - RZ Universitaet Freiburg
-#
-# Version: 0.1.0c
-#
-# /var/X11R6/bin/startgui
-#
-###########################################################################
-
-WM=$1
-[ $WM ] || WM=kde
-case "$WM" in
- *fvwm*)
- fvwm2
- ;;
- *kde*)
- startkde
- ;;
- *wmaker*|*windowmaker*)
- wmaker
- ;;
- *ice*)
- icewm
- ;;
- *gnome*)
- gnome
- ;;
- *citrix|Citrix|ICAClient|*wfica)
- wfica
- ;;
- *citrix-mgr|*citrix-indirect|*wfcmgr)
- #
- ;;
- *vmware*)
- /var/X11R6/bin/xdialog.sh
- ;;
- *)
- if which $WM; then
- $WM
- error "Session ended ... Click OK to restart X" xmessage
- else
- error "Tried: $WM - Kein sinnvoller wm angegeb." xmessage
- xterm
- fi
- ;;
-esac
-exit 0