Subversion Repositories livecd

Rev

Rev 153 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 beyerle@PS 1
#!/bin/bash
2
#
3
###############################################################
4
#
5
# Restore the system to a usable and bootable installation
6
#
169 beyerle@PS 7
# Urs Beyerle
1 beyerle@PS 8
#
9
###############################################################
10
 
11
function usage() {
12
 
13
   ## Usage
14
   # ----------------------------------------------------------
15
 
16
   cat <<EOF
17
 
18
   Options:
19
 
20
    -h:       print this screen
21
    -psi:     customize for PSI Live CD
22
 
23
EOF
24
 
25
}
26
 
27
###############################################################
28
 
29
### read options from command-line
30
PSI=""
31
while [ $# -gt 0 ]; do
32
 
33
    case "$1" in
34
       -h)
35
            usage; exit;;
36
       -psi)
37
            PSI=true; shift; continue;;
38
       *)
39
            usage; exit;;
40
    esac
41
 
42
done
43
 
44
### check if I run inside my directory
45
if [ ! -x $( basename $0 ) ]; then
46
    echo "Please run $( basename $0 ) within its directory"
47
    exit 1
48
fi
49
 
125 beyerle@PS 50
# source livecd.conf
51
. livecd.conf
52
 
1 beyerle@PS 53
LIVECD_DIR=$( pwd )
54
 
55
### restore /etc/rc.d/rc.sysinit
153 beyerle@PS 56
cp -a /etc/rc.d/rc.sysinit.ori /etc/rc.d/rc.sysinit
1 beyerle@PS 57
 
58
### enable ssh again
59
chkconfig sshd on 2>/dev/null
60
 
61
### create link to liblinuxlive
62
mkdir -p /livecd/live
63
rm -f /livecd/live/liblinuxlive
64
ln -s $LIVECD_DIR/linux-live.sl/initrd/liblinuxlive /livecd/live/liblinuxlive
65
 
66
### restore /etc/resolv.conf
67
mv -f /etc/resolv.conf.ori /etc/resolv.conf
68
 
69
### move /etc/yum.repos.d, it will interfere with our yum.conf.psi
125 beyerle@PS 70
if [ -e /etc/yum.conf.psi ]; then
71
    if [ -d /etc/yum.repos.d ]; then
72
	rm -rf /etc/yum.repos.d.ori
73
	mv -f /etc/yum.repos.d /etc/yum.repos.d.ori
74
    fi
1 beyerle@PS 75
fi
76
 
77
### restore folders from /mini
81 beyerle@PS 78
echo "restore folders from /mini ..."
79
mv /mini/usr/share/doc/* /usr/share/doc/ 2>/dev/null
123 beyerle@PS 80
mv /mini/usr/share/backgrounds/images/* /usr/share/backgrounds/images/ 2>/dev/null
1 beyerle@PS 81
if [ -f /mini/usr/share/info/bash.info.gz ]; then
82
    ./mini-livecd.sh -restore
83
fi
80 beyerle@PS 84
echo "done."
81 beyerle@PS 85
echo
1 beyerle@PS 86
 
87
### restore cronjobs
88
mv /etc/cron_backup/sysstat /etc/cron.d/ 2>/dev/null
89
mv /etc/cron_backup/00-makewhatis.cron.weekly /etc/cron.weekly/00-makewhatis.cron 2>/dev/null
90
mv /etc/cron_backup/* /etc/cron.daily/
91
 
92
### set root password again
14 beyerle@PS 93
[ "$SET_ROOTPWD" = "yes" ] && passwd
108 beyerle@PS 94
if [ "$SET_ROOTPWD" != "yes" ]; then
95
    echo "Please note:"
96
    echo "If you are not building the LiveCD in chroot,"
97
    echo "root password is unset. Run passwd to set it again."
98
fi