]> spindle.queued.net Git - xodist/blob - initchroot.sh
initchroot: disable root passwd
[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
22 . functions.sh
23
24 usage()
25 {
26         echo "" 1>&2
27         echo "Usage: $0 <root directory>" 1>&2
28         echo "" 1>&2
29         exit 1
30 }
31
32 if [ "$#" != "1" ]; then
33         usage
34 fi
35
36 ROOT_DIR=$1
37
38 if [ -d "${ROOT_DIR}" ]; then
39         echo "" 1>&2
40         echo "*** ${ROOT_DIR} already exists!" 1>&2
41         usage
42 fi
43
44 check_for_cmds debootstrap || exit 1
45
46 # create chroot
47 debootstrap --arch i386 lenny ${ROOT_DIR} http://http.us.debian.org/debian
48 mount -t proc proc ${ROOT_DIR}/proc
49 mount -t devpts devpts ${ROOT_DIR}/dev/pts
50
51 # allow daemons to be installed without breaking
52 mv ${ROOT_DIR}/sbin/start-stop-daemon ${ROOT_DIR}/sbin/start-stop-daemon.REAL
53 cat >${ROOT_DIR}/sbin/start-stop-daemon<<EOF
54 #!/bin/sh
55 echo
56 echo "Warning: Fake start-stop-daemon called, doing nothing"
57 EOF
58 chmod 755 ${ROOT_DIR}/sbin/start-stop-daemon
59
60 # set up apt
61 export DEBIAN_FRONTEND=noninteractive
62 export DEBCONF_PRIORITY=critical
63 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
64 Acquire::Pdiffs "false";
65 APT::Install-Recommends "false";
66 EOF
67 cat >${ROOT_DIR}/etc/apt/sources.list<<EOF
68 deb http://http.us.debian.org/debian ${DIST} main contrib non-free
69 deb http://security.debian.org/ ${DIST}/updates main contrib non-free
70 EOF
71 (chroot ${ROOT_DIR} aptitude update)
72
73 # set up base system
74 echo "en_US.UTF-8 UTF-8" >${ROOT_DIR}/etc/locale.gen
75 (chroot ${ROOT_DIR} aptitude install -y locales)
76 k=$(wget -O- http://queued.mit.edu/~dilinger/builds-master/ | sed -ne 's/.*href="\(.\+\)_i386.deb".*/\1_i386.deb/p' | tail -n1)
77 wget -O ${ROOT_DIR}/${k} http://queued.mit.edu/~dilinger/builds-master/${k}
78 (chroot ${ROOT_DIR} dpkg -i /${k})
79 rm -f ${ROOT_DIR}/${k}
80
81 # install packages
82 (chroot ${ROOT_DIR} aptitude install -y `cat package_list`)
83
84 # configure X
85 cat >${ROOT_DIR}/etc/X11/xorg.conf<<EOF
86 # xorg.conf (X.Org X Window System server configuration file)
87
88 Section "Monitor"
89         Identifier "Configured Monitor"
90         HorizSync 30-67
91         VertRefresh 48-52
92         DisplaySize 152 114
93         Mode "1200x900"
94                 DotClock 57.275
95                 HTimings 1200 1208 1216 1240
96                 VTimings 900 905 908 912
97                 Flags "-HSync" "-VSync"
98         EndMode
99 EndSection
100
101 Section "Screen"
102         Identifier "Default Screen"
103         Monitor "Configured Monitor"
104 EndSection
105 EOF
106
107 # add default user
108 (chroot ${ROOT_DIR} passwd -l root)
109 (chroot ${ROOT_DIR} useradd -s /bin/bash ${DEFUSER})
110 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})
111 (chroot ${ROOT_DIR} adduser ${DEFUSER} cdrom)
112 (chroot ${ROOT_DIR} adduser ${DEFUSER} audio)
113 (chroot ${ROOT_DIR} adduser ${DEFUSER} video)
114 (chroot ${ROOT_DIR} adduser ${DEFUSER} plugdev)
115 (chroot ${ROOT_DIR} adduser ${DEFUSER} netdev)
116 (chroot ${ROOT_DIR} adduser ${DEFUSER} powerdev)
117 echo "${DEFUSER} ALL=(ALL) ALL" >> ${ROOT_DIR}/etc/sudoers
118
119 # done, clean up
120 mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
121 (chroot ${ROOT_DIR} aptitude clean)
122 umount ${ROOT_DIR}/proc
123 umount ${ROOT_DIR}/dev/pts