]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/porterbox/files/setup-dchroot
8458c60c105f4154b4299e8621ddb307f75ac0a9
[dsa-puppet.git] / modules / porterbox / files / setup-dchroot
1 #!/bin/bash
2
3 ##
4 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
5 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
6 ##
7
8 # Copyright (c) 2013 Peter Palfrader
9 #
10 # Permission is hereby granted, free of charge, to any person
11 # obtaining a copy of this software and associated documentation
12 # files (the "Software"), to deal in the Software without
13 # restriction, including without limitation the rights to use,
14 # copy, modify, merge, publish, distribute, sublicense, and/or sell
15 # copies of the Software, and to permit persons to whom the
16 # Software is furnished to do so, subject to the following
17 # conditions:
18 #
19 # The above copyright notice and this permission notice shall be
20 # included in all copies or substantial portions of the Software.
21 #
22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
24 # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
26 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
27 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 # OTHER DEALINGS IN THE SOFTWARE.
30
31 THISARCH=$(dpkg --print-architecture)
32
33 usage()
34 {
35 cat << EOF
36 usage: $0 <suite>
37
38 OPTIONS:
39     -a ARCH    debootstrap arch [$arch]
40     -m MIRROR  http mirror to use [$mirror]
41     -b basedir place where to put the tarball [$basedir]
42     -c         write config only
43     -d dir     place where to build the chroot [${builddir:-$basedir}]
44     -f         overwrite config and target tarball
45     -g GROUPS  groups that should have access to the schroot [$groupuser]
46     -k KEYRING use an alternate keyring [$keyring]
47     -p PERS    use a different sbuild personality [$personality]
48     -r GROUPS  groups that should have root in the schroot [$grouproot]
49     -s         use sbuild compatible naming scheme
50     -u         Ubuntu target
51     -h         this help
52 EOF
53 }
54
55 die() {
56     echo >&2 "$*"
57     exit 1
58 }
59
60 do_cleanup() {
61     local cnt
62     cnt=$((${#cleanup[*]}-1))
63     for i in $(seq ${cnt} -1 0); do
64         ${cleanup[$i]} || true
65     done
66 }
67
68 genschrootconf() {
69     local suite="$1"; shift
70     local arch="$1"; shift
71     local target="$1"; shift
72     local extra="${1:-}"; shift || true
73
74     if [ -n "$extra" ]; then
75         local suite="${suite}-${extra}"
76     fi
77
78     if [ -n "$sbuildnames" ]; then
79         local name="${suite}-${arch}-sbuild"
80     else
81         local name="${suite}_${arch}-dchroot"
82     fi
83
84
85 cat << EOF
86 [${name}]
87 description=[${name}] Debian $suite chroot for $arch
88 type=file
89 file=$target
90 groups=$groupuser
91 root-groups=$grouproot
92 source-groups=adm
93 source-root-groups=adm
94 EOF
95
96     if dpkg --compare-versions "$(lsb_release --release --short)" '<' 7; then
97         echo "script-config=$personality/config"
98     else
99         echo "profile=$personality"
100     fi
101
102     if [ "$THISARCH" = "$arch" ]; then
103         echo "aliases=$suite"
104     fi
105     case "$arch" in
106         armel|armhf|i386|powerpc|s390|sparc)
107             echo "personality=linux32"
108             ;;
109     esac
110     echo
111
112     case "$suite" in
113         sid)
114             genschrootconf "experimental" "$arch" "$target"
115             ;;
116         experimental|jessie)
117             :
118             ;;
119         *)
120             if [ -z "$extra" ] && [ -z "$ubuntu" ]; then
121                 genschrootconf "$suite" "$arch" "$target" "backports"
122             fi
123     esac
124 }
125
126
127 set -e
128 set -u
129
130 arch="$THISARCH"
131 if [ -e /etc/schroot/dsa/default-mirror ]; then
132     mirror=$(cat /etc/schroot/dsa/default-mirror )
133 fi
134 mirror="${mirror:-http://cdn.debian.net/debian}"
135 configonly=""
136 force=""
137 basedir="/srv/chroot"
138 builddir=""
139 keyring=/usr/share/keyrings/debian-archive-keyring.gpg
140 personality="dsa"
141 sbuildnames=""
142 ubuntu=""
143 groupuser="Debian,guest"
144 grouproot="adm"
145 declare -a cleanup
146 trap do_cleanup EXIT
147
148 while getopts "a:b:cd:fg:hk:m:p:r:su" OPTION
149 do
150     case $OPTION in
151         a)
152             arch="$OPTARG"
153             ;;
154         b)
155             basedir="$OPTARG"
156             ;;
157         c)
158             configonly="1"
159             ;;
160         d)
161             builddir="$OPTARG"
162             ;;
163         f)
164             force="1"
165             ;;
166         g)
167             groupuser="$OPTARG"
168             ;;
169         h)
170             usage
171             exit 0
172             ;;
173         k)
174             keyring="$OPTARG"
175             ;;
176         m)
177             mirror="$OPTARG"
178             ;;
179         p)
180             personality="$OPTARG"
181             ;;
182         r)
183             grouproot="$OPTARG"
184             ;;
185         s)
186             sbuildnames="1"
187             ;;
188         u)
189             ubuntu="1"
190             ;;
191         *)
192             usage >&2
193             exit 1
194             ;;
195     esac
196 done
197 shift $(($OPTIND - 1))
198
199 if [ "$#" != 1 ]; then
200     usage >&2
201     exit 1
202 fi
203 suite="$1"; shift
204 tuple="${suite}_${arch}"
205
206 builddir=${builddir:-$basedir}
207 [ -d "$basedir" ] || die "Error: $basedir does not exist (or is not a directory)."
208 [ -d "$builddir" ] || die "Error: $builddir does not exist (or is not a directory)."
209
210 target="$basedir/$tuple.tar.gz"
211 ! [ -e "$target" ] || [ -n "$force" ] || die "Error: $target already exists."
212
213 schrootconfig="/etc/schroot/chroot.d/${tuple}-dchroot"
214 ! [ -e "$schrootconfig" ] || [ -n "$force" ] || die "Error: $schrootconfig already exists."
215
216
217 #
218 # let's go
219 #
220 genschrootconf "$suite" "$arch" "$target" | tee "$schrootconfig"
221
222 if [ -n "$configonly" ]; then exit 0; fi
223
224 rootdir=$(mktemp -d "$builddir/create-$suite-XXXXXX")
225 cleanup+=("rm -r $rootdir")
226 cleanup+=("umount $rootdir/sys")
227
228 set -x
229 debootstrap \
230     --keyring "$keyring" \
231     --include="apt" \
232     --variant=buildd \
233     --arch="$arch" \
234     "$suite" "$rootdir" "$mirror"
235 echo "$tuple" > $rootdir/etc/debian_chroot
236
237 chroot "$rootdir" apt-get update
238 chroot "$rootdir" apt-get install -y --no-install-recommends policyrcd-script-zg2
239 cat > "$rootdir/usr/local/sbin/policy-rc.d" << 'EOF'
240 #!/bin/sh
241
242 # policy-rc.d script for chroots.
243 # Copyright (c) 2007 Peter Palfrader <peter@palfrader.org>
244
245 while true; do
246     case "$1" in
247         -*)      shift ;;
248         makedev) exit 0;;
249         *)
250             echo "Not running services in chroot."
251             exit 101
252             ;;
253     esac
254 done
255 EOF
256 chmod +x "$rootdir/usr/local/sbin/policy-rc.d"
257 [ -z "$ubuntu" ] && chroot "$rootdir" apt-get install -y --no-install-recommends locales-all
258 chroot "$rootdir" apt-get install -y --no-install-recommends zsh build-essential less vim fakeroot devscripts gdb
259 rm -f "$rootdir/etc/apt/sources.list" "$rootdir/etc/apt/sources.list.d/*"
260 umount "$rootdir/sys" || true
261
262 tartmp=$(tempfile --directory "$basedir" --suffix=".tar.gz")
263 cleanup+=("rm -f $tartmp")
264 (cd "$rootdir" && tar caf "$tartmp" . && mv "$tartmp" "$target")