0b384113100308305e1a8b5d57fdb940c449fcf1
[febootstrap.git] / febootstrap.sh
1 #!/bin/bash -
2 # febootstrap
3 # (C) Copyright 2009 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it 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,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18 #
19 # Written by Richard W.M. Jones <rjones@redhat.com>
20
21 unset CDPATH
22
23 TEMP=`getopt \
24         -o g:i:p:u: \
25         --long groupinstall:,group-install:,help,install:,noclean,no-clean,proxy:,updates: \
26         -n febootstrap -- "$@"`
27 if [ $? != 0 ]; then
28     echo "febootstrap: problem parsing the command line arguments"
29     exit 1
30 fi
31 eval set -- "$TEMP"
32
33 declare -a packages
34 packages[0]="@Core"
35 i=0
36
37 clean=yes
38
39 usage ()
40 {
41     echo "Usage: febootstrap [--options] REPO TARGET [MIRROR]"
42     echo "Please read febootstrap(8) man page for more information."
43 }
44
45 while true; do
46     case "$1" in
47         -i|--install)
48             packages[i++]="$2"
49             shift 2;;
50         --groupinstall|--group-install)
51             packages[i++]="@$2"
52             shift 2;;
53         -p|--proxy)
54             proxy="proxy=$2"
55             shift 2;;
56         -u|--updates)
57             updates="$2";
58             shift 2;;
59         --noclean|--no-clean)
60             clean=no
61             shift;;
62         --help)
63             usage
64             exit 0;;
65         --)
66             shift
67             break;;
68         *)
69             echo "Internal error!"
70             exit 1;;
71     esac
72 done
73
74 if [ $# -lt 2 -o $# -gt 3 ]; then
75     usage
76     exit 1
77 fi
78
79 repo="$1"
80 target="$2"
81 mirror="$3"
82
83 # Architecture is currently always the same as the current arch.  We
84 # cannot do --foreign builds.  See discussion in the manpage.
85 arch=$(arch)
86 case $arch in
87     i?86) arch=i386 ;;
88 esac
89
90 # Create a temporary directory, make sure it gets cleaned up at the end.
91 tmpdir=$(mktemp -d)
92 remove_tmpdir ()
93 {
94   status=$?
95   rm -rf "$tmpdir" && exit $status
96 }
97 trap remove_tmpdir EXIT
98
99 # Create the temporary repository configuration.  The name of the
100 # repository is always 'febootstrap'.
101 cat > $tmpdir/febootstrap.repo <<__EOF__
102 [febootstrap]
103 name=febootstrap $repo $arch
104 failovermethod=priority
105 enabled=1
106 gpgcheck=0
107 $proxy
108 __EOF__
109
110 # "Mirror" parameter is a bit misnamed, but it means a local mirror,
111 # instead of the public Fedora mirrors.
112 if [ -n "$mirror" ]; then
113     echo "baseurl=$mirror" >> "$tmpdir"/febootstrap.repo
114 else
115     echo "mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=$repo&arch=$arch" >> "$tmpdir"/febootstrap.repo
116 fi
117
118 # Add the updates repository if asked.
119 case "$updates" in
120     none|no)
121         ;;
122     *://*)
123         cat >> $tmpdir/febootstrap.repo <<EOF
124
125 [febootstrap-updates]
126 name=febootstrap updates $arch
127 failovermethod=priority
128 enabled=1
129 gpgcheck=0
130 $proxy
131 baseurl=$updates
132 EOF
133         ;;
134     *)
135         cat >> $tmpdir/febootstrap.repo <<EOF
136
137 [febootstrap-updates]
138 name=febootstrap $updates $arch
139 failovermethod=priority
140 enabled=1
141 gpgcheck=0
142 $proxy
143 mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=$updates&arch=$arch
144 EOF
145         ;;
146 esac
147
148 # Create the target filesystem.
149 rm -rf "$target"
150 mkdir "$target"
151
152 # Target must be an absolute path.
153 target=$(cd "$target"; pwd)
154
155 # This is necessary to keep yum happy.  It's not clear why yum can't
156 # just create this file itself.
157 mkdir -p "$target"/var/cache/yum/febootstrap/packages
158
159 # NB: REQUIRED for useradd/groupadd to run properly.
160 #
161 # However this causes 'filesystem' RPM install to give the
162 # following error.  Not sure how serious the error is:
163 # error: unpacking of archive failed on file /proc: cpio: utime
164 export FAKECHROOT_EXCLUDE_PATH=/proc
165
166 # Substitute some statically-linked commands.  This is only supported
167 # in fakechroot > 2.9.  For previous versions of fakechroot it is
168 # ignored.
169 export FAKECHROOT_CMD_SUBST=/sbin/ldconfig=/bin/true:/usr/sbin/glibc_post_upgrade.i686=/bin/true:/usr/sbin/glibc_post_upgrade.x86_64=/bin/true:/usr/sbin/build-locale-archive=/bin/true:/usr/sbin/libgcc_post_upgrade=/bin/true
170
171 # Make the device nodes inside the fake chroot.
172 # (Copied from mock/backend.py)  Why isn't there a base package which
173 # creates these?
174 make_device_nodes ()
175 {
176     mkdir "$target"/proc
177     mkdir "$target"/sys
178     mkdir "$target"/dev
179     (
180         cd "$target"/dev
181         mkdir pts
182         mkdir shm
183         mkdir mapper
184         mknod null c 1 3;    chmod 0666 null
185         mknod full c 1 7;    chmod 0666 full
186         mknod zero c 1 5;    chmod 0666 zero
187         mknod random c 1 8;  chmod 0666 random
188         mknod urandom c 1 9; chmod 0444 urandom
189         mknod tty c 5 0;     chmod 0666 tty
190         mknod console c 5 1; chmod 0600 console
191         mknod ptmx c 5 2;    chmod 0666 ptmx
192         ln -sf /proc/self/fd/0 stdin
193         ln -sf /proc/self/fd/1 stdout
194         ln -sf /proc/self/fd/2 stderr
195     )
196 }
197 export -f make_device_nodes
198 export target
199
200 if [ $(id -u) -ne 0 ]; then
201     fakeroot -s "$target"/fakeroot.log \
202     make_device_nodes
203 else
204     make_device_nodes
205 fi
206
207 # Run yum.
208 run_yum ()
209 {
210     yum \
211         -y -c "$tmpdir"/febootstrap.repo \
212         --disablerepo=* --enablerepo=febootstrap \
213         --noplugins --nogpgcheck \
214         --installroot="$target" \
215         install "$@"
216 }
217 export -f run_yum
218 export tmpdir
219
220 if [ $(id -u) -ne 0 ]; then
221     # Bash doesn't support exporting array variables, hence this
222     # tortuous workaround.
223     fakeroot -i "$target"/fakeroot.log -s "$target"/fakeroot.log \
224     fakechroot -s \
225     bash -c 'run_yum "$@"' run_yum "${packages[@]}"
226 else
227     run_yum "${packages[@]}"
228 fi
229
230 # Clean up the yum repository.
231 if [ "$clean" = "yes" ]; then
232     rm -rf "$target"/var/cache/yum/febootstrap
233 fi