]> git.proxmox.com Git - mirror_lxc.git/blob - templates/lxc-ubuntu.in
Merge pull request #777 from hallyn/2016-01-28/cgns1
[mirror_lxc.git] / templates / lxc-ubuntu.in
1 #!/bin/bash
2
3 #
4 # template script for generating ubuntu container for LXC
5 #
6 # This script consolidates and extends the existing lxc ubuntu scripts
7 #
8
9 # Copyright © 2011 Serge Hallyn <serge.hallyn@canonical.com>
10 # Copyright © 2010 Wilhelm Meier
11 # Author: Wilhelm Meier <wilhelm.meier@fh-kl.de>
12 #
13 # This library is free software; you can redistribute it and/or
14 # modify it under the terms of the GNU Lesser General Public
15 # License as published by the Free Software Foundation; either
16 # version 2.1 of the License, or (at your option) any later version.
17
18 # This library is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 # Lesser General Public License for more details.
22
23 # You should have received a copy of the GNU Lesser General Public
24 # License along with this library; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26
27 # Detect use under userns (unsupported)
28 for arg in "$@"; do
29 [ "$arg" = "--" ] && break
30 if [ "$arg" = "--mapped-uid" -o "$arg" = "--mapped-gid" ]; then
31 echo "This template can't be used for unprivileged containers." 1>&2
32 echo "You may want to try the \"download\" template instead." 1>&2
33 exit 1
34 fi
35 done
36
37 # Make sure the usual locations are in PATH
38 export PATH=$PATH:/usr/sbin:/usr/bin:/sbin:/bin
39
40 set -e
41
42 LOCALSTATEDIR="@LOCALSTATEDIR@"
43 LXC_TEMPLATE_CONFIG="@LXCTEMPLATECONFIG@"
44 # Allows the lxc-cache directory to be set by environment variable
45 LXC_CACHE_PATH=${LXC_CACHE_PATH:-"$LOCALSTATEDIR/cache/lxc"}
46
47 if [ -r /etc/default/lxc ]; then
48 . /etc/default/lxc
49 fi
50
51 # Check if given path is in a btrfs partition
52 is_btrfs()
53 {
54 [ -e $1 -a $(stat -f -c '%T' $1) = "btrfs" ]
55 }
56
57 # Check if given path is the root of a btrfs subvolume
58 is_btrfs_subvolume()
59 {
60 [ -d $1 -a $(stat -f -c '%T' $1) = "btrfs" -a $(stat -c '%i' $1) -eq 256 ]
61 }
62
63 try_mksubvolume()
64 {
65 path=$1
66 [ -d $path ] && return 0
67 mkdir -p $(dirname $path)
68 if which btrfs >/dev/null 2>&1 && is_btrfs $(dirname $path); then
69 btrfs subvolume create $path
70 else
71 mkdir -p $path
72 fi
73 }
74
75 try_rmsubvolume()
76 {
77 path=$1
78 [ -d $path ] || return 0
79 if which btrfs >/dev/null 2>&1 && is_btrfs_subvolume $path; then
80 btrfs subvolume delete $path
81 else
82 rm -rf $path
83 fi
84 }
85
86 configure_ubuntu()
87 {
88 rootfs=$1
89 hostname=$2
90 release=$3
91 user=$4
92 password=$5
93
94 # configure the network using the dhcp
95 cat <<EOF > $rootfs/etc/network/interfaces
96 # This file describes the network interfaces available on your system
97 # and how to activate them. For more information, see interfaces(5).
98
99 # The loopback network interface
100 auto lo
101 iface lo inet loopback
102
103 auto eth0
104 iface eth0 inet dhcp
105 EOF
106
107 # set the hostname
108 cat <<EOF > $rootfs/etc/hostname
109 $hostname
110 EOF
111 # set minimal hosts
112 cat <<EOF > $rootfs/etc/hosts
113 127.0.0.1 localhost
114 127.0.1.1 $hostname
115
116 # The following lines are desirable for IPv6 capable hosts
117 ::1 ip6-localhost ip6-loopback
118 fe00::0 ip6-localnet
119 ff00::0 ip6-mcastprefix
120 ff02::1 ip6-allnodes
121 ff02::2 ip6-allrouters
122 EOF
123
124 if [ ! -f $rootfs/etc/init/container-detect.conf ]; then
125 # suppress log level output for udev
126 sed -i "s/=\"err\"/=0/" $rootfs/etc/udev/udev.conf
127
128 # remove jobs for consoles 5 and 6 since we only create 4 consoles in
129 # this template
130 rm -f $rootfs/etc/init/tty{5,6}.conf
131 fi
132
133 if [ -z "$bindhome" ]; then
134 chroot $rootfs useradd --create-home -s /bin/bash $user
135 echo "$user:$password" | chroot $rootfs chpasswd
136 fi
137
138 # make sure we have the current locale defined in the container
139 if [ -z "$LANG" ] || echo $LANG | grep -E -q "^C(\..+)*$"; then
140 chroot $rootfs locale-gen en_US.UTF-8 || true
141 chroot $rootfs update-locale LANG=en_US.UTF-8 || true
142 else
143 chroot $rootfs locale-gen $LANG || true
144 chroot $rootfs update-locale LANG=$LANG || true
145 fi
146
147 # generate new SSH keys
148 if [ -x $rootfs/var/lib/dpkg/info/openssh-server.postinst ]; then
149 cat > $rootfs/usr/sbin/policy-rc.d << EOF
150 #!/bin/sh
151 exit 101
152 EOF
153 chmod +x $rootfs/usr/sbin/policy-rc.d
154
155 rm -f $rootfs/etc/ssh/ssh_host_*key*
156 mv $rootfs/etc/init/ssh.conf $rootfs/etc/init/ssh.conf.disabled
157 DPKG_MAINTSCRIPT_PACKAGE=openssh DPKG_MAINTSCRIPT_NAME=postinst chroot $rootfs /var/lib/dpkg/info/openssh-server.postinst configure
158 mv $rootfs/etc/init/ssh.conf.disabled $rootfs/etc/init/ssh.conf
159
160 sed -i "s/root@$(hostname)/root@$hostname/g" $rootfs/etc/ssh/ssh_host_*.pub
161
162 rm -f $rootfs/usr/sbin/policy-rc.d
163 fi
164
165 return 0
166 }
167
168 # finish setting up the user in the container by injecting ssh key and
169 # adding sudo group membership.
170 # passed-in user is either 'ubuntu' or the user to bind in from host.
171 finalize_user()
172 {
173 user=$1
174
175 sudo_version=$(chroot $rootfs dpkg-query -W -f='${Version}' sudo)
176
177 if chroot $rootfs dpkg --compare-versions $sudo_version gt "1.8.3p1-1"; then
178 groups="sudo"
179 else
180 groups="sudo admin"
181 fi
182
183 for group in $groups; do
184 chroot $rootfs groupadd --system $group >/dev/null 2>&1 || true
185 chroot $rootfs adduser ${user} $group >/dev/null 2>&1 || true
186 done
187
188 if [ -n "$auth_key" -a -f "$auth_key" ]; then
189 u_path="/home/${user}/.ssh"
190 root_u_path="$rootfs/$u_path"
191 mkdir -p $root_u_path
192 cp $auth_key "$root_u_path/authorized_keys"
193 chroot $rootfs chown -R ${user}: "$u_path"
194
195 echo "Inserted SSH public key from $auth_key into /home/${user}/.ssh/authorized_keys"
196 fi
197 return 0
198 }
199
200 # A function to try and autodetect squid-deb-proxy servers on the local network
201 # if either the squid-deb-proxy-client package is installed on the host or
202 # a parent container set the 50squid-deb-proxy-client file.
203 squid_deb_proxy_autodetect()
204 {
205 local apt_discover=/usr/share/squid-deb-proxy-client/apt-avahi-discover
206 local proxy_file=/etc/apt/apt.conf.d/50squid-deb-proxy-client
207 squid_proxy_line= # That's a global :/
208
209 # Maybe the host is aware of a squid-deb-proxy?
210 if [ -f $apt_discover ]; then
211 echo -n "Discovering squid-deb-proxy..."
212 squid_proxy_line=$($apt_discover)
213 if [ -n "$squid_proxy_line" ]; then
214 echo "found squid-deb-proxy: $squid_proxy_line"
215 else
216 echo "no squid-deb-proxy found"
217 fi
218 fi
219
220 # Are we in a nested container, and the parent already knows of a proxy?
221 if [ -f $proxy_file ]; then
222 # Extract the squid URL from the file (whatever is between "")
223 squid_proxy_line=`cat $proxy_file | sed "s/.*\"\(.*\)\".*/\1/"`
224 fi
225 }
226
227 #
228 # Choose proxies for container
229 # http_proxy will be used by debootstrap on the host.
230 # APT_PROXY will be used to set /etc/apt/apt.conf.d/70proxy in the container.
231 #
232 choose_container_proxy()
233 {
234 local rootfs=$1
235 local arch=$2
236
237 if [ -z "$HTTP_PROXY" ]; then
238 HTTP_PROXY="none"
239 fi
240 case "$HTTP_PROXY" in
241 none)
242 squid_deb_proxy_autodetect
243 if [ -n "$squid_proxy_line" ]; then
244 APT_PROXY=$squid_proxy_line
245 export http_proxy=$squid_proxy_line
246 else
247 APT_PROXY=
248 fi
249 ;;
250 apt)
251 RES=`apt-config shell APT_PROXY Acquire::http::Proxy`
252 eval $RES
253 [ -z "$APT_PROXY" ] || export http_proxy=$APT_PROXY
254 ;;
255 *)
256 APT_PROXY=$HTTP_PROXY
257 export http_proxy=$HTTP_PROXY
258 ;;
259 esac
260 }
261
262 write_sourceslist()
263 {
264 # $1 => path to the partial cache or the rootfs
265 # $2 => architecture we want to add
266 # $3 => whether to use the multi-arch syntax or not
267
268 if [ -n "$APT_PROXY" ]; then
269 mkdir -p $1/etc/apt/apt.conf.d
270 cat > $1/etc/apt/apt.conf.d/70proxy << EOF
271 Acquire::http::Proxy "$APT_PROXY" ;
272 EOF
273 fi
274
275 case $2 in
276 amd64|i386)
277 MIRROR=${MIRROR:-http://archive.ubuntu.com/ubuntu}
278 SECURITY_MIRROR=${SECURITY_MIRROR:-http://security.ubuntu.com/ubuntu}
279 ;;
280 *)
281 MIRROR=${MIRROR:-http://ports.ubuntu.com/ubuntu-ports}
282 SECURITY_MIRROR=${SECURITY_MIRROR:-http://ports.ubuntu.com/ubuntu-ports}
283 ;;
284 esac
285 if [ -n "$3" ]; then
286 cat >> "$1/etc/apt/sources.list" << EOF
287 deb [arch=$2] $MIRROR ${release} main restricted universe multiverse
288 deb [arch=$2] $MIRROR ${release}-updates main restricted universe multiverse
289 deb [arch=$2] $SECURITY_MIRROR ${release}-security main restricted universe multiverse
290 EOF
291 else
292 cat >> "$1/etc/apt/sources.list" << EOF
293 deb $MIRROR ${release} main restricted universe multiverse
294 deb $MIRROR ${release}-updates main restricted universe multiverse
295 deb $SECURITY_MIRROR ${release}-security main restricted universe multiverse
296 EOF
297 fi
298 }
299
300 install_packages()
301 {
302 local rootfs="$1"
303 shift
304 local packages="$*"
305 if [ -z $update ]
306 then
307 chroot $rootfs apt-get update
308 update=true
309 fi
310 if [ -n "${packages}" ]
311 then
312 chroot $rootfs apt-get install --force-yes -y --no-install-recommends ${packages}
313 fi
314 }
315
316 cleanup()
317 {
318 try_rmsubvolume $cache/partial-$arch
319 try_rmsubvolume $cache/rootfs-$arch
320 }
321
322 suggest_flush()
323 {
324 echo "Container upgrade failed. The container cache may be out of date,"
325 echo "in which case flushing the cache (see -F in the help output) may help."
326 }
327
328 download_ubuntu()
329 {
330 cache=$1
331 arch=$2
332 release=$3
333
334 packages_template=${packages_template:-"ssh,vim"}
335 debootstrap_parameters=
336
337 # Try to guess a list of langpacks to install
338 langpacks="language-pack-en"
339
340 if which dpkg >/dev/null 2>&1; then
341 langpacks=`(echo $langpacks &&
342 dpkg -l | grep -E "^ii language-pack-[a-z]* " |
343 cut -d ' ' -f3) | sort -u`
344 fi
345 packages_template="${packages_template},$(echo $langpacks | sed 's/ /,/g')"
346
347 if [ -n "$variant" ]; then
348 debootstrap_parameters="$debootstrap_parameters --variant=$variant"
349 fi
350 if [ "$variant" = 'minbase' ]; then
351 packages_template="${packages_template},sudo,ifupdown,isc-dhcp-client"
352 fi
353
354 echo "Installing packages in template: ${packages_template}"
355
356 trap cleanup EXIT SIGHUP SIGINT SIGTERM
357 # check the mini ubuntu was not already downloaded
358 try_mksubvolume "$cache/partial-$arch"
359 if [ $? -ne 0 ]; then
360 echo "Failed to create '$cache/partial-$arch' directory"
361 return 1
362 fi
363
364 choose_container_proxy $cache/partial-$arch/ $arch
365 # download a mini ubuntu into a cache
366 echo "Downloading ubuntu $release minimal ..."
367 if [ -n "$(which qemu-debootstrap)" ]; then
368 qemu-debootstrap --verbose $debootstrap_parameters --components=main,universe --arch=$arch --include=${packages_template} $release $cache/partial-$arch $MIRROR
369 else
370 debootstrap --verbose $debootstrap_parameters --components=main,universe --arch=$arch --include=${packages_template} $release $cache/partial-$arch $MIRROR
371 fi
372
373 if [ $? -ne 0 ]; then
374 echo "Failed to download the rootfs, aborting."
375 return 1
376 fi
377
378 # Serge isn't sure whether we should avoid doing this when
379 # $release == `distro-info -d`
380 echo "Installing updates"
381 > $cache/partial-$arch/etc/apt/sources.list
382 write_sourceslist $cache/partial-$arch/ $arch
383
384 chroot "$1/partial-${arch}" apt-get update
385 if [ $? -ne 0 ]; then
386 echo "Failed to update the apt cache"
387 return 1
388 fi
389 cat > "$1/partial-${arch}"/usr/sbin/policy-rc.d << EOF
390 #!/bin/sh
391 exit 101
392 EOF
393 chmod +x "$1/partial-${arch}"/usr/sbin/policy-rc.d
394
395 lxc-unshare -s MOUNT -- chroot "$1/partial-${arch}" apt-get dist-upgrade -y || { suggest_flush; false; }
396 rm -f "$1/partial-${arch}"/usr/sbin/policy-rc.d
397
398 chroot "$1/partial-${arch}" apt-get clean
399
400 mv "$1/partial-$arch" "$1/rootfs-$arch"
401 trap EXIT
402 trap SIGINT
403 trap SIGTERM
404 trap SIGHUP
405 echo "Download complete"
406 return 0
407 }
408
409 copy_ubuntu()
410 {
411 cache=$1
412 arch=$2
413 rootfs=$3
414
415 # make a local copy of the miniubuntu
416 echo "Copying rootfs to $rootfs ..."
417 try_mksubvolume $rootfs
418 if which btrfs >/dev/null 2>&1 && is_btrfs_subvolume $cache/rootfs-$arch && is_btrfs_subvolume $rootfs; then
419 realrootfs=$(dirname $config)/rootfs
420 [ "$rootfs" = "$realrootfs" ] || umount $rootfs || return 1
421 btrfs subvolume delete $realrootfs || return 1
422 btrfs subvolume snapshot $cache/rootfs-$arch $realrootfs || return 1
423 [ "$rootfs" = "$realrootfs" ] || mount --bind $realrootfs $rootfs || return 1
424 else
425 rsync -Ha $cache/rootfs-$arch/ $rootfs/ || return 1
426 fi
427 return 0
428 }
429
430 install_ubuntu()
431 {
432 rootfs=$1
433 release=$2
434 flushcache=$3
435 cache="$4/$release"
436 mkdir -p $LOCALSTATEDIR/lock/subsys/
437
438 (
439 flock -x 9
440 if [ $? -ne 0 ]; then
441 echo "Cache repository is busy."
442 return 1
443 fi
444
445
446 if [ $flushcache -eq 1 ]; then
447 echo "Flushing cache..."
448 try_rmsubvolume $cache/partial-$arch
449 try_rmsubvolume $cache/rootfs-$arch
450 fi
451
452 echo "Checking cache download in $cache/rootfs-$arch ... "
453 if [ ! -e "$cache/rootfs-$arch" ]; then
454 download_ubuntu $cache $arch $release
455 if [ $? -ne 0 ]; then
456 echo "Failed to download 'ubuntu $release base'"
457 return 1
458 fi
459 fi
460
461 echo "Copy $cache/rootfs-$arch to $rootfs ... "
462 copy_ubuntu $cache $arch $rootfs
463 if [ $? -ne 0 ]; then
464 echo "Failed to copy rootfs"
465 return 1
466 fi
467
468 return 0
469
470 ) 9>$LOCALSTATEDIR/lock/subsys/lxc-ubuntu$release
471
472 return $?
473 }
474
475 copy_configuration()
476 {
477 path=$1
478 rootfs=$2
479 name=$3
480 arch=$4
481 release=$5
482
483 if [ $arch = "i386" ]; then
484 arch="i686"
485 fi
486
487 # if there is exactly one veth network entry, make sure it has an
488 # associated hwaddr.
489 nics=`grep -e '^lxc\.network\.type[ \t]*=[ \t]*veth' $path/config | wc -l`
490 if [ $nics -eq 1 ]; then
491 grep -q "^lxc.network.hwaddr" $path/config || sed -i -e "/^lxc\.network\.type[ \t]*=[ \t]*veth/a lxc.network.hwaddr = 00:16:3e:$(openssl rand -hex 3| sed 's/\(..\)/\1:/g; s/.$//')" $path/config
492 fi
493
494 # Generate the configuration file
495 ## Relocate all the network config entries
496 sed -i -e "/lxc.network/{w ${path}/config-network" -e "d}" $path/config
497
498 ## Relocate any other config entries
499 sed -i -e "/lxc./{w ${path}/config-auto" -e "d}" $path/config
500
501 ## Add all the includes
502 echo "" >> $path/config
503 echo "# Common configuration" >> $path/config
504 if [ -e "${LXC_TEMPLATE_CONFIG}/ubuntu.common.conf" ]; then
505 echo "lxc.include = ${LXC_TEMPLATE_CONFIG}/ubuntu.common.conf" >> $path/config
506 fi
507 if [ -e "${LXC_TEMPLATE_CONFIG}/ubuntu.${release}.conf" ]; then
508 echo "lxc.include = ${LXC_TEMPLATE_CONFIG}/ubuntu.${release}.conf" >> $path/config
509 fi
510
511 ## Add the container-specific config
512 echo "" >> $path/config
513 echo "# Container specific configuration" >> $path/config
514 [ -e "$path/config-auto" ] && cat $path/config-auto >> $path/config && rm $path/config-auto
515 grep -q "^lxc.rootfs" $path/config 2>/dev/null || echo "lxc.rootfs = $rootfs" >> $path/config
516 cat <<EOF >> $path/config
517 lxc.utsname = $name
518 lxc.arch = $arch
519 EOF
520
521 ## Re-add the previously removed network config
522 echo "" >> $path/config
523 echo "# Network configuration" >> $path/config
524 cat $path/config-network >> $path/config
525 rm $path/config-network
526
527 if [ $? -ne 0 ]; then
528 echo "Failed to add configuration"
529 return 1
530 fi
531
532 return 0
533 }
534
535 post_process()
536 {
537 rootfs=$1
538 release=$2
539 packages=$3
540
541 # Disable service startup
542 cat > $rootfs/usr/sbin/policy-rc.d << EOF
543 #!/bin/sh
544 exit 101
545 EOF
546 chmod +x $rootfs/usr/sbin/policy-rc.d
547
548 # If the container isn't running a native architecture, setup multiarch
549 if [ -x "$(ls -1 ${rootfs}/usr/bin/qemu-*-static 2>/dev/null)" ]; then
550 dpkg_version=$(chroot $rootfs dpkg-query -W -f='${Version}' dpkg)
551 if chroot $rootfs dpkg --compare-versions $dpkg_version ge "1.16.2"; then
552 chroot $rootfs dpkg --add-architecture ${hostarch}
553 else
554 mkdir -p ${rootfs}/etc/dpkg/dpkg.cfg.d
555 echo "foreign-architecture ${hostarch}" > ${rootfs}/etc/dpkg/dpkg.cfg.d/lxc-multiarch
556 fi
557
558 # Save existing value of MIRROR and SECURITY_MIRROR
559 DEFAULT_MIRROR=$MIRROR
560 DEFAULT_SECURITY_MIRROR=$SECURITY_MIRROR
561
562 # Write a new sources.list containing both native and multiarch entries
563 > ${rootfs}/etc/apt/sources.list
564 write_sourceslist $rootfs $arch "native"
565
566 MIRROR=$DEFAULT_MIRROR
567 SECURITY_MIRROR=$DEFAULT_SECURITY_MIRROR
568 write_sourceslist $rootfs $hostarch "multiarch"
569
570 # Finally update the lists and install upstart using the host architecture
571 HOST_PACKAGES="upstart:${hostarch} mountall:${hostarch} isc-dhcp-client:${hostarch}"
572 chroot $rootfs apt-get update
573 if chroot $rootfs dpkg -l iproute2 | grep -q ^ii; then
574 HOST_PACKAGES="$HOST_PACKAGES iproute2:${hostarch}"
575 else
576 HOST_PACKAGES="$HOST_PACKAGES iproute:${hostarch}"
577 fi
578 install_packages $rootfs $HOST_PACKAGES
579 fi
580
581 # Install Packages in container
582 if [ -n "$packages" ]
583 then
584 local packages="`echo $packages | sed 's/,/ /g'`"
585 echo "Installing packages: ${packages}"
586 install_packages $rootfs $packages
587 fi
588
589 # Set initial timezone as on host
590 if [ -f /etc/timezone ]; then
591 cat /etc/timezone > $rootfs/etc/timezone
592 chroot $rootfs dpkg-reconfigure -f noninteractive tzdata
593 elif [ -f /etc/sysconfig/clock ]; then
594 . /etc/sysconfig/clock
595 echo $ZONE > $rootfs/etc/timezone
596 chroot $rootfs dpkg-reconfigure -f noninteractive tzdata
597 else
598 echo "Timezone in container is not configured. Adjust it manually."
599 fi
600
601 # rmdir /dev/shm for containers that have /run/shm
602 # I'm afraid of doing rm -rf $rootfs/dev/shm, in case it did
603 # get bind mounted to the host's /run/shm. So try to rmdir
604 # it, and in case that fails move it out of the way.
605 # NOTE: This can only be removed once 12.04 goes out of support
606 if [ ! -L $rootfs/dev/shm ] && [ -e $rootfs/dev/shm ]; then
607 rmdir $rootfs/dev/shm 2>/dev/null || mv $rootfs/dev/shm $rootfs/dev/shm.bak
608 ln -s /run/shm $rootfs/dev/shm
609 fi
610
611 # Re-enable service startup
612 rm $rootfs/usr/sbin/policy-rc.d
613 }
614
615 do_bindhome()
616 {
617 rootfs=$1
618 user=$2
619
620 # copy /etc/passwd, /etc/shadow, and /etc/group entries into container
621 pwd=`getent passwd $user` || { echo "Failed to copy password entry for $user"; false; }
622 echo $pwd >> $rootfs/etc/passwd
623
624 # make sure user's shell exists in the container
625 shell=`echo $pwd | cut -d: -f 7`
626 if [ ! -x $rootfs/$shell ]; then
627 echo "shell $shell for user $user was not found in the container."
628 pkg=`dpkg -S $(readlink -m $shell) | cut -d ':' -f1`
629 echo "Installing $pkg"
630 install_packages $rootfs $pkg
631 fi
632
633 shad=`getent shadow $user`
634 echo "$shad" >> $rootfs/etc/shadow
635
636 # bind-mount the user's path into the container's /home
637 h=`getent passwd $user | cut -d: -f 6`
638 mkdir -p $rootfs/$h
639
640 # use relative path in container
641 h2=${h#/}
642 while [ ${h2:0:1} = "/" ]; do
643 h2=${h2#/}
644 done
645 echo "lxc.mount.entry = $h $h2 none bind 0 0" >> $path/config
646
647 # Make sure the group exists in container
648 grp=`echo $pwd | cut -d: -f 4` # group number for $user
649 grpe=`getent group $grp` || return 0 # if host doesn't define grp, ignore in container
650 chroot $rootfs getent group "$grpe" || echo "$grpe" >> $rootfs/etc/group
651 }
652
653 usage()
654 {
655 cat <<EOF
656 $1 -h|--help [-a|--arch] [-b|--bindhome <user>] [-d|--debug]
657 [-F | --flush-cache] [-r|--release <release>] [-v|--variant] [ -S | --auth-key <keyfile>]
658 [--rootfs <rootfs>] [--packages <packages>] [-u|--user <user>] [--password <password>]
659 [--mirror <url>] [--security-mirror <url>]
660 release: the ubuntu release (e.g. precise): defaults to host release on ubuntu, otherwise uses latest LTS
661 variant: debootstrap variant to use (see debootstrap(8))
662 bindhome: bind <user>'s home into the container
663 The ubuntu user will not be created, and <user> will have
664 sudo access.
665 arch: the container architecture (e.g. amd64): defaults to host arch
666 auth-key: SSH Public key file to inject into container
667 packages: list of packages to add comma separated
668 mirror,security-mirror: mirror for download and /etc/apt/sources.list
669 EOF
670 return 0
671 }
672
673 options=$(getopt -o a:b:hp:r:v:n:FS:du: -l arch:,bindhome:,help,path:,release:,variant:,name:,flush-cache,auth-key:,debug,rootfs:,packages:,user:,password:,mirror:,security-mirror: -- "$@")
674 if [ $? -ne 0 ]; then
675 usage $(basename $0)
676 exit 1
677 fi
678 eval set -- "$options"
679
680 release=precise # Default to the last Ubuntu LTS release for non-Ubuntu systems
681 if [ -f /etc/lsb-release ]; then
682 . /etc/lsb-release
683 if [ "$DISTRIB_ID" = "Ubuntu" ]; then
684 release=$DISTRIB_CODENAME
685 fi
686 fi
687
688 bindhome=
689
690 # Code taken from debootstrap
691 if [ -x /usr/bin/dpkg ] && /usr/bin/dpkg --print-architecture >/dev/null 2>&1; then
692 arch=`/usr/bin/dpkg --print-architecture`
693 elif which udpkg >/dev/null 2>&1 && udpkg --print-architecture >/dev/null 2>&1; then
694 arch=`/usr/bin/udpkg --print-architecture`
695 else
696 arch=$(uname -m)
697 if [ "$arch" = "i686" ]; then
698 arch="i386"
699 elif [ "$arch" = "x86_64" ]; then
700 arch="amd64"
701 elif [ "$arch" = "armv7l" ]; then
702 arch="armhf"
703 elif [ "$arch" = "aarch64" ]; then
704 arch="arm64"
705 elif [ "$arch" = "ppc64le" ]; then
706 arch="ppc64el"
707 fi
708 fi
709
710 debug=0
711 hostarch=$arch
712 flushcache=0
713 packages=""
714 user="ubuntu"
715 password="ubuntu"
716
717 while true
718 do
719 case "$1" in
720 -h|--help) usage $0 && exit 0;;
721 --rootfs) rootfs=$2; shift 2;;
722 -p|--path) path=$2; shift 2;;
723 -n|--name) name=$2; shift 2;;
724 -u|--user) user=$2; shift 2;;
725 --password) password=$2; shift 2;;
726 -F|--flush-cache) flushcache=1; shift 1;;
727 -r|--release) release=$2; shift 2;;
728 -v|--variant) variant=$2; shift 2;;
729 --packages) packages=$2; shift 2;;
730 -b|--bindhome) bindhome=$2; shift 2;;
731 -a|--arch) arch=$2; shift 2;;
732 -S|--auth-key) auth_key=$2; shift 2;;
733 -d|--debug) debug=1; shift 1;;
734 --mirror) MIRROR=$2; shift 2;;
735 --security-mirror) SECURITY_MIRROR=$2; shift 2;;
736 --) shift 1; break ;;
737 *) break ;;
738 esac
739 done
740
741 if [ $debug -eq 1 ]; then
742 set -x
743 fi
744
745 if [ -n "$bindhome" ]; then
746 pwd=`getent passwd $bindhome`
747 if [ $? -ne 0 ]; then
748 echo "Error: no password entry found for $bindhome"
749 exit 1
750 fi
751 fi
752
753
754 if [ "$arch" = "i686" ]; then
755 arch=i386
756 fi
757
758 if [ $hostarch = "i386" -a $arch = "amd64" ]; then
759 echo "can't create $arch container on $hostarch"
760 exit 1
761 fi
762
763 if [ $hostarch = "armhf" -o $hostarch = "armel" -o $hostarch = "arm64" ] && \
764 [ $arch != "armhf" -a $arch != "armel" -a $arch != "arm64" ]; then
765 echo "can't create $arch container on $hostarch"
766 exit 1
767 fi
768
769 if [ $arch = "arm64" ] && [ $hostarch != "arm64" ]; then
770 echo "can't create $arch container on $hostarch"
771 exit 1
772 fi
773
774 if [ $hostarch = "powerpc" -a $arch != "powerpc" ]; then
775 echo "can't create $arch container on $hostarch"
776 exit 1
777 fi
778
779 which debootstrap >/dev/null 2>&1 || { echo "'debootstrap' command is missing" >&2; false; }
780
781 if [ -z "$path" ]; then
782 echo "'path' parameter is required"
783 exit 1
784 fi
785
786 if [ "$(id -u)" != "0" ]; then
787 echo "This script should be run as 'root'"
788 exit 1
789 fi
790
791 # detect rootfs
792 config="$path/config"
793 # if $rootfs exists here, it was passed in with --rootfs
794 if [ -z "$rootfs" ]; then
795 if grep -q '^lxc.rootfs' $config 2>/dev/null ; then
796 rootfs=$(awk -F= '/^lxc.rootfs =/{ print $2 }' $config)
797 else
798 rootfs=$path/rootfs
799 fi
800 fi
801
802 install_ubuntu $rootfs $release $flushcache $LXC_CACHE_PATH
803 if [ $? -ne 0 ]; then
804 echo "failed to install ubuntu $release"
805 exit 1
806 fi
807
808 configure_ubuntu $rootfs $name $release $user $password
809 if [ $? -ne 0 ]; then
810 echo "failed to configure ubuntu $release for a container"
811 exit 1
812 fi
813
814 copy_configuration $path $rootfs $name $arch $release
815 if [ $? -ne 0 ]; then
816 echo "failed write configuration file"
817 exit 1
818 fi
819
820 post_process $rootfs $release $trim_container $packages
821
822 if [ -n "$bindhome" ]; then
823 do_bindhome $rootfs $bindhome
824 finalize_user $bindhome
825 else
826 finalize_user $user
827 fi
828
829 echo ""
830 echo "##"
831 if [ -n "$bindhome" ]; then
832 echo "# Log in as user $bindhome"
833 else
834 echo "# The default user is '$user' with password '$password'!"
835 echo "# Use the 'sudo' command to run tasks as root in the container."
836 fi
837 echo "##"
838 echo ""