add python2.7 explicit install dependency in buster chroot
[dev-env-setup.git] / mk-deb-chroot
1 #!/bin/bash
2 if [ "$EUID" -ne 0 ]
3 then echo "Please run as root"
4 exit
5 fi
6 if [ -z "$1" ]
7 then echo "need arg $1 for chroot to make"
8 exit
9 fi
10 chrootdir="$1"
11 echo "creating chroot '$chrootdir'"
12 # Setup fstab mount points
13 cat <<EOF >> /etc/fstab
14 /dev /opt/chroot/$chrootdir/dev none bind 0 0
15 /dev/pts /opt/chroot/$chrootdir/dev/pts none bind 0 0
16 /proc /opt/chroot/$chrootdir/proc none bind 0 0
17 /sys /opt/chroot/$chrootdir/sys none bind 0 0
18 /tmp /opt/chroot/$chrootdir/tmp none bind 0 0
19 EOF
20
21 # Create coriolis chroot dir in /opt
22 mkdir -p /opt/chroot/$chrootdir
23 # Install debootstrap and schroot via apt
24 apt install -y debootstrap schroot
25 # Install debian/buster chroot using debootstrap
26 /usr/sbin/debootstrap buster /opt/chroot/$chrootdir http://ftp.debian.org/debian
27 # Mount all chroot mount points from fstab
28 mount /opt/chroot/$chrootdir/dev
29 mount /opt/chroot/$chrootdir/dev/pts
30 mount /opt/chroot/$chrootdir/proc
31 mount /opt/chroot/$chrootdir/sys
32 mount /opt/chroot/$chrootdir/tmp
33 echo "$chrootdir" > /opt/chroot/$chrootdir/etc/debian_chroot
34
35 # Install apt dependencies in the chroot
36 chroot /opt/chroot/$chrootdir /bin/bash << EOF
37 echo Installing necessary apt dependencies in the chroot
38 apt-get update -y
39 apt-get upgrade -y
40 apt-get install -y automake binutils-dev build-essential \
41 ccache cmake gcc git \
42 libtool \
43 sysvinit-core \
44 sysvinit-utils \
45 sudo \
46 python2.7 \
47 python3 python3-pip \
48 python3-setuptools python3-dev
49
50 # yeah systemd in a chroot? not very funny joke.
51 apt-get remove -y systemd
52
53 # add sudo no password
54 echo '$SUDO_USER ALL=NOPASSWD: ALL' >> /etc/sudoers.d/$chrootdir
55
56 # Create user with same UID in the chroot
57 useradd -m -p `python3 -c 'import crypt; print (crypt.crypt("1234","Fx"))'` \
58 -s /bin/bash $SUDO_USER -k /etc/skel
59 echo -e "
60 Added user ${SUDO_USER} with \e[1;91mpassword: 1234\e[0m"
61
62 # add deb-src to sources
63 echo deb-src http://ftp.debian.org/debian buster main > \
64 /etc/apt/sources.list.d/bustersrc.list
65
66 echo -e "
67 \e[1;91mPlease use command 'passwd ${SUDO_USER}' to change this immediately after this script is run for security purposes.\e[0m
68 "
69
70 # Add convenience variable to chroot user .bash_profile
71 echo -e 'export PATH=/usr/lib/ccache:"\044PATH"\nexport DISPLAY=:0.0\n' > /home/$SUDO_USER/.bash_profile
72 chown $SUDO_USER /home/$SUDO_USER/.bash_profile
73 chgrp $SUDO_USER /home/$SUDO_USER/.bash_profile
74
75 echo -e "Added 'export PATH=/usr/lib/ccache:\"\044PATH\"\nexport DISPLAY=:0.0' to /home/$SUDO_USER/.bash_profile to speed up rebuilds"
76 EOF
77
78 # Add chroot config to schroot.conf
79 cat <<EOF >>/etc/schroot/schroot.conf
80 [$chrootdir]
81 description=Debian Buster for $chrootdir
82 directory=/opt/chroot/$chrootdir
83 groups=sbuild-security,$SUDO_USER,users
84 EOF
85
86 echo "Adding the following $chrootdir section to /etc/schroot/schroot.conf:
87
88 [$chrootdir]
89 description=Debian Buster for $chrootdir
90 directory=/opt/chroot/$chrootdir
91 groups=sbuild-security,$SUDO_USER,users
92
93 This enables you to chroot into $chrootdir as an unprivileged user by running
94 'schroot -c $chrootdir /bin/bash'
95 "
96