]> spindle.queued.net Git - xodist/blob - initchroot.sh
Fix to gdm and kdm configuration to use correct username.
[xodist] / initchroot.sh
1 #!/bin/sh -e
2 #
3 # Copyright © 2008  Andres Salomon <dilinger@queued.net>
4 #
5 # This file is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 DIST=lenny
20 DEFUSER=olpc
21 PLIST=gnome.packages
22 MIRROR=http://http.us.debian.org/debian/
23 OTHERMIRROR=
24
25 . functions.sh
26
27 usage()
28 {
29         echo "" 1>&2
30         echo "Usage: $0 [<options>] <root directory>" 1>&2
31         echo "" 1>&2
32         echo "Options:" 1>&2
33         echo "  --distribution <name>     Which distribution to use" 1>&2
34         echo "  --user <user>             Username for default user" 1>&2
35         echo "  --package-list <list>     File containing package list" 1>&2
36         echo "  --mirror <url>            Main Mirror URL prefix" 1>&2
37         echo "  --othermirror <line>      An additional sources.list line" 1>&2
38         echo "" 1>&2
39         exit 1
40 }
41
42 while test $# != 0
43 do
44         case $1 in
45         --distribution)
46                 DIST=$2
47                 shift
48                 if [ -z "${OTHERMIRROR}" ]; then
49                     OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
50                 fi
51                 ;;
52         --user)
53                 DEFUSER=$2
54                 shift
55                 ;;
56         --package-list)
57                 PLIST=$2
58                 shift
59                 ;;
60         --mirror)
61                 MIRROR=$2
62                 shift
63                 ;;
64         --othermirror)
65                 OTHERMIRROR=$2
66                 shift
67                 ;;
68         *)
69                 if [ "$#" != "1" ]; then
70                         echo "Unknown option $1" 1>&2
71                         usage
72                 else
73                         ROOT_DIR="$1"
74                 fi
75                 ;;
76         esac
77         shift
78 done
79
80 if [ "$ROOT_DIR" = "" ]; then
81         echo "" 1>&2
82         echo "*** No root directory specified!" 1>&2
83         usage
84 fi
85
86 if [ -d "${ROOT_DIR}" ]; then
87         echo "" 1>&2
88         echo "*** ${ROOT_DIR} already exists!" 1>&2
89         usage
90 fi
91
92 check_for_cmds debootstrap || exit 1
93
94 if [ -z "${OTHERMIRROR}" ]; then
95     OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
96 fi
97
98 # create chroot
99 debootstrap --arch i386 ${DIST} ${ROOT_DIR} ${MIRROR}
100 mkdir ${ROOT_DIR}/ofw
101 mkdir ${ROOT_DIR}/var/cache/apt/cache
102 chroot_internal_mounts ${ROOT_DIR}
103
104 # allow daemons to be installed without breaking
105 mv ${ROOT_DIR}/sbin/start-stop-daemon ${ROOT_DIR}/sbin/start-stop-daemon.REAL
106 cat >${ROOT_DIR}/sbin/start-stop-daemon<<EOF
107 #!/bin/sh
108 echo
109 echo "Warning: Fake start-stop-daemon called, doing nothing"
110 EOF
111 chmod 755 ${ROOT_DIR}/sbin/start-stop-daemon
112
113 # set up apt (working around #314334)
114 export DEBIAN_FRONTEND=noninteractive
115 export DEBCONF_PRIORITY=critical
116 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
117 Acquire::Pdiffs "false";
118 APT::Install-Recommends "false";
119 Dir {
120         Cache "var/cache/apt/" {
121                 srcpkgcache "cache/srcpkgcache.bin";
122                 pkgcache "cache/pkgcache.bin";
123         };
124 };
125 EOF
126 cat >${ROOT_DIR}/etc/apt/sources.list<<EOF
127 deb ${MIRROR} ${DIST} main contrib non-free
128 ${OTHERMIRROR}
129 EOF
130 (chroot ${ROOT_DIR} aptitude update)
131
132 # set up base system
133 echo "en_US.UTF-8 UTF-8" >${ROOT_DIR}/etc/locale.gen
134 (chroot ${ROOT_DIR} aptitude install -y locales)
135
136 k=$(wget -O- http://queued.mit.edu/~dilinger/builds-master/ | sed -ne 's/.*href="\(.\+\)_i386.deb".*/\1_i386.deb/p' | tail -n1)
137 mkdir -p cache
138 wget --continue -O cache/${k} http://queued.mit.edu/~dilinger/builds-master/${k}
139 cp cache/${k} ${ROOT_DIR}/${k} 
140 (chroot ${ROOT_DIR} dpkg -i /${k})
141 rm -f ${ROOT_DIR}/${k}
142
143 echo "debxo" > ${ROOT_DIR}/etc/hostname
144 cat >${ROOT_DIR}/etc/hosts<<EOF
145 127.0.0.1 localhost.localdomain localhost
146 127.0.0.1 debxo
147
148 # The following lines are desirable for IPv6 capable hosts
149 ::1     ip6-localhost ip6-loopback
150 fe00::0 ip6-localnet
151 ff00::0 ip6-mcastprefix
152 ff02::1 ip6-allnodes
153 ff02::2 ip6-allrouters
154 ff02::3 ip6-allhosts
155 EOF
156
157 # install packages
158 (chroot ${ROOT_DIR} aptitude install -y `cat ${PLIST}`)
159
160 # configure X
161 if [ -d ${ROOT_DIR}/etc/X11 ]; then
162     cat >${ROOT_DIR}/etc/X11/xorg.conf<<EOF
163 # xorg.conf (X.Org X Window System server configuration file)
164
165 Section "Monitor"
166         Identifier "Configured Monitor"
167         HorizSync 30-67
168         VertRefresh 48-52
169         DisplaySize 152 114
170         Mode "1200x900"
171                 DotClock 57.275
172                 HTimings 1200 1208 1216 1240
173                 VTimings 900 905 908 912
174                 Flags "-HSync" "-VSync"
175         EndMode
176 EndSection
177
178 Section "Screen"
179         Identifier "Default Screen"
180         Monitor "Configured Monitor"
181 EndSection
182 EOF
183 fi
184
185 # configure kdm, kde
186 if [ -d ${ROOT_DIR}/etc/kde3/kdm ]; then
187     sed --in-place "s/AllowNullPasswd=false/AllowNullPasswd=true/;s/#AutoLoginEnable=true/AutoLoginEnable=true/;s/#AutoLoginUser=fred/AutoLoginUser=${DEFUSER}/" ${ROOT_DIR}/etc/kde3/kdm/kdmrc
188 fi
189
190 # configure gdm, gnome
191 if [ -d ${ROOT_DIR}/etc/gdm ]; then
192     sed -i "s_\[daemon\]_\[daemon\]\n\nGreeter=/usr/lib/gdm/gdmlogin\n\nAutomaticLoginEnable=true\n\nAutomaticLogin=${DEFUSER}_" ${ROOT_DIR}/etc/gdm/gdm.conf
193 fi
194 if [ -d ${ROOT_DIR}/etc/gconf/2 ]; then
195     cat >${ROOT_DIR}/etc/gconf/2/local-defaults.path<<EOF
196 # DebXO defaults (customized for the XO-1's display
197 xml:readonly:/etc/gconf/debxo.xml.defaults
198 EOF
199     mkdir -p ${ROOT_DIR}/etc/gconf/debxo.xml.defaults
200     cp %gconf-tree.xml ${ROOT_DIR}/etc/gconf/debxo.xml.defaults/
201 fi
202
203 # add default user
204 (chroot ${ROOT_DIR} passwd -l root)
205 rm -rf ${ROOT_DIR}/home/*;      # i have no idea what's adding this crap...
206 (chroot ${ROOT_DIR} useradd -s /bin/bash --create-home ${DEFUSER})
207 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})
208 (chroot ${ROOT_DIR} adduser ${DEFUSER} cdrom)
209 (chroot ${ROOT_DIR} adduser ${DEFUSER} audio)
210 (chroot ${ROOT_DIR} adduser ${DEFUSER} video)
211 (chroot ${ROOT_DIR} adduser ${DEFUSER} plugdev)
212 (chroot ${ROOT_DIR} adduser ${DEFUSER} netdev)
213 (chroot ${ROOT_DIR} adduser ${DEFUSER} powerdev)
214 (chroot ${ROOT_DIR} adduser ${DEFUSER} floppy)
215 echo "${DEFUSER} ALL=(ALL) ALL" >> ${ROOT_DIR}/etc/sudoers
216
217 # done, clean up
218 mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
219 (chroot ${ROOT_DIR} aptitude clean)
220 chroot_internal_umounts ${ROOT_DIR}