summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/metapackages/ubiquity-trinity/ubiquity-hooks/55_trinity
blob: e265c8a04347813d7a615d47f5b8fdf764bdbd68 (plain)
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
#! /bin/sh
set -e

#-- configure autologin
. /usr/share/debconf/confmodule

export LANG=C # avoid locale errors from perl
ROOT=/target
chroot=chroot
log='log-output -t trinity-livecd'

db_get passwd/username
USER="$RET"
db_get passwd/auto-login
if [ -n "$USER" ] && [ "$RET" = true ]; then
    if $chroot $ROOT [ -f /etc/trinity/tdm/kdmrc ]; then
        # Configure KDM autologin
        $log $chroot $ROOT sed -i$BACKUP -r \
            -e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
            -e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
            -e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
            /etc/trinity/tdm/kdmrc
    fi

    if $chroot $ROOT [ -f /etc/trinity/tdm/tdmrc ]; then
        # Configure TDM autologin
        $log $chroot $ROOT sed -i$BACKUP -r \
            -e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
            -e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
            -e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
            /etc/trinity/tdm/tdmrc
    fi
fi

#-- cleanup additional packages
packages=""
if [ -f "$ROOT/var/lib/dpkg/info/casper-trinity.list" ]; then
    packages="$packages casper-trinity"
fi
if [ -f "$ROOT/var/lib/dpkg/info/ubiquity-trinity.list" ]; then
    packages="$packages ubiquity-trinity"
fi
if [ -n "$packages" ]; then
    if [ -f "$ROOT/usr/bin/apt-get" ]; then
        $chroot $ROOT apt-get -y purge $packages
        $chroot $ROOT apt-get -y --purge autoremove
    else
        $chroot $ROOT dpkg -P $packages
    fi
fi

exit 0