summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/desktop/OpenSLX/Distro/Scilin.pm
blob: 1dc0482c60e96db6b2bac7e254dd3226e1d68fe3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Copyright (c) 2006..2009 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# desktop/OpenSLX/Distro/Scilin.pm
#    - provides Scilin-specific overrides of the Distro API for the desktop
#      plugin.
# -----------------------------------------------------------------------------
package desktop::OpenSLX::Distro::Scilin;

use strict;
use warnings;

use base qw(desktop::OpenSLX::Distro::Base);

use File::Path;

use OpenSLX::Basics;
use OpenSLX::Utils;

################################################################################
### interface methods
################################################################################

sub GDMPathInfo
{
    my $self = shift;
    
    my $pathInfo = $self->SUPER::GDMPathInfo();
    
    # create gdm.conf-custom instead of gdm.conf
    $pathInfo->{config} = '/etc/gdm/custom.conf';

    return $pathInfo;
}

sub setupGDMScript
{
    my $self     = shift;
    my $repoPath = shift;

    my $script = $self->SUPER::setupGDMScript($repoPath);

    my $configFile = $self->GDMPathInfo->{config};

    # include common stuff (independent of display manager used)
    $script = _setupCommonDmScript($script);

    $script .= unshiftHereDoc(<<'    End-of-Here');
        echo "DISPLAYMANAGER=GNOME" \
            >/mnt/etc/sysconfig/desktop
        # gdm does not like AUFS/UnionFS on its var directory
        mkdir -m 1770 /mnt/var/lib/gdm
        chown root:gdm /mnt/var/lib/gdm
    End-of-Here

    return $script;
}

sub GDMConfigHashForWorkstation
{
    my $self = shift;

    my $configHash = $self->SUPER::GDMConfigHashForWorkstation();
    $configHash->{'daemon'}->{SessionDesktopDir} =
        '/etc/X11/session/:/usr/share/xsessions/:/usr/share/gdm/BuiltInSessions';
    $configHash->{'daemon'}->{Greeter} =
        '/usr/libexec/gdmgreeter';

    return $configHash;
}

sub setupKDMScript
{
    my $self     = shift;
    my $repoPath = shift;

    # SUSE reads /var/adm/kdm/kdmrc.sysconfig, so we link that to
    # our config file
    my $pathInfo   = $self->KDMPathInfo();
    my $configFile = $pathInfo->{config};
    mkpath("/etc/opt/kdm");
    mkpath("/var/adm/kdm");
    # maybe backup kdmrc.sysconfig sometimes
    unlink("/var/adm/kdm/kdmrc.sysconfig");
    # the config file gets overwritten if this script is present
    unlink("/opt/kde3/share/apps/kdm/read_sysconfig.sh");
    symlink("/etc/opt/kdm/kdmrc", "/var/adm/kdm/kdmrc.sysconfig");

    my $script = $self->SUPER::setupKDMScript($repoPath);

    # include common stuff (independent of display manager used)
    $script = _setupCommonDmScript($script);

    $script .= unshiftHereDoc(<<'    End-of-Here');
        echo "DISPLAYMANAGER=KDE" \
            >/mnt/etc/sysconfig/desktop
    End-of-Here

    return $script;
}

sub _setupCommonDmScript
{
    my $script = shift;

    $script .= unshiftHereDoc(<<'    End-of-Here');
        # cleanup after users Xorg session
        sed 's,^#!.*,,' /mnt/etc/X11/xdm/Xreset \
          > /mnt/etc/X11/xdm/Xreset.system
        echo -e '#!/bin/sh\n#\n# modified by desktop plugin in Stage3\n#\n
        # remove safely any remaining files of the leaving user in /tmp
        ( su -c "rm -rf /tmp/*" - $USER
          echo "$USER files removed by $0" >/tmp/files.removed 2>/dev/null ) &
        . /etc/X11/xdm/Xreset.system' >/mnt/etc/X11/xdm/Xreset
        chmod a+x /mnt/etc/X11/xdm/Xreset*

        # enable the inittab entry again (incomplete)
        # sed -e "s,# line deleted.*,x:5:respawn:/etc/X11/prefdm -nodaemon," \
        # -i /mnt/etc/inittab 
    End-of-Here

    return $script;
}

1;