summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-04-21 14:51:24 +0200
committerOliver Tappe2008-04-21 14:51:24 +0200
commit4193b0262f4b26c97c8b41b0a375d786d1690995 (patch)
tree3c0e45a580bfc29163e5ceeb4ad21bf76c4d0de6 /os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm
parentQuickfix for failing stage3 start if desktop plugin was installed (diff)
downloadcore-4193b0262f4b26c97c8b41b0a375d786d1690995.tar.gz
core-4193b0262f4b26c97c8b41b0a375d786d1690995.tar.xz
core-4193b0262f4b26c97c8b41b0a375d786d1690995.zip
* intermediate check-in of recent work at the desktop plugin - GDM handling
now seems to work with SUSE and Ubuntu, but proper integration will have to wait until I have shaken off the flu git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1752 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm')
-rw-r--r--os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm13
1 files changed, 12 insertions, 1 deletions
diff --git a/os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm b/os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm
index 361543e9..d8503973 100644
--- a/os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm
+++ b/os-plugins/plugins/desktop/OpenSLX/Distro/Debian.pm
@@ -26,6 +26,17 @@ use OpenSLX::Utils;
### interface methods
################################################################################
-# TODO: implement!
+sub patchGDMScript
+{
+ my $self = shift;
+ my $script = shift;
+
+ $script .= unshiftHereDoc(<<' End-of-Here');
+ rllinker gdm 1 1
+ echo '/usr/bin/gdm' > /mnt/etc/X11/default-display-manager
+ End-of-Here
+ return $script;
+}
+
1; \ No newline at end of file