3 # (C) Copyright 2009 Red Hat Inc.
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.
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.
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.
19 # Written by Richard W.M. Jones <rjones@redhat.com>
23 --long groupinstall:,group-install:,help,install:,noclean,no-clean,proxy: \
24 -n febootstrap -- "$@"`
26 echo "febootstrap: problem parsing the command line arguments"
39 echo "Usage: febootstrap [--options] REPO TARGET [MIRROR]"
40 echo "Please read febootstrap(8) man page for more information."
51 --groupinstall|--group-install)
64 echo "Internal error!"
69 if [ $# -lt 2 -o $# -gt 3 ]; then
78 # Architecture is currently always the same as the current arch. We
79 # cannot do --foreign builds. See discussion in the manpage.
85 # Create a temporary directory, make sure it gets cleaned up at the end.
90 rm -rf "$tmpdir" && exit $status
92 trap remove_tmpdir EXIT
94 # Create the temporary repository configuration. The name of the
95 # repository is always 'febootstrap'.
96 cat > $tmpdir/febootstrap.repo <<__EOF__
98 name=febootstrap $repo $arch
99 failovermethod=priority
105 # "Mirror" parameter is a bit misnamed, but it means a local mirror,
106 # instead of the public Fedora mirrors.
107 if [ -n "$mirror" ]; then
108 echo "baseurl=$mirror" >> "$tmpdir"/febootstrap.repo
110 echo "mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=$repo&arch=$arch" >> "$tmpdir"/febootstrap.repo
113 # Create the target filesystem.
117 # Target must be an absolute path.
118 target=$(cd "$target"; pwd)
120 # This is necessary to keep yum happy. It's not clear why yum can't
121 # just create this file itself.
122 mkdir -p "$target"/var/cache/yum/febootstrap/packages
124 # NB: REQUIRED for useradd/groupadd to run properly.
126 # However this causes 'filesystem' RPM install to give the
127 # following error. Not sure how serious the error is:
128 # error: unpacking of archive failed on file /proc: cpio: utime
129 export FAKECHROOT_EXCLUDE_PATH=/proc
131 # Substitute some statically-linked commands. This is only supported
132 # in fakechroot > 2.9. For previous versions of fakechroot it is
134 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
136 # Make the device nodes inside the fake chroot.
137 # (Copied from mock/backend.py) Why isn't there a base package which
149 mknod null c 1 3; chmod 0666 null
150 mknod full c 1 7; chmod 0666 full
151 mknod zero c 1 5; chmod 0666 zero
152 mknod random c 1 8; chmod 0666 random
153 mknod urandom c 1 9; chmod 0444 urandom
154 mknod tty c 5 0; chmod 0666 tty
155 mknod console c 5 1; chmod 0600 console
156 mknod ptmx c 5 2; chmod 0666 ptmx
157 ln -sf /proc/self/fd/0 stdin
158 ln -sf /proc/self/fd/1 stdout
159 ln -sf /proc/self/fd/2 stderr
162 export -f make_device_nodes
165 if [ $(id -u) -ne 0 ]; then
166 fakeroot -s "$target"/fakeroot.log \
176 -y -c "$tmpdir"/febootstrap.repo \
177 --disablerepo=* --enablerepo=febootstrap \
178 --noplugins --nogpgcheck \
179 --installroot="$target" \
185 if [ $(id -u) -ne 0 ]; then
186 # Bash doesn't support exporting array variables, hence this
187 # tortuous workaround.
188 fakeroot -i "$target"/fakeroot.log -s "$target"/fakeroot.log \
190 bash -c 'run_yum "$@"' run_yum "${packages[@]}"
192 run_yum "${packages[@]}"
195 # Clean up the yum repository.
196 if [ "$clean" = "yes" ]; then
197 rm -rf "$target"/var/cache/yum/febootstrap