]> piware.de Git - bin.git/blobdiff - makechroot
add scandoc
[bin.git] / makechroot
index 185207b448feea48dff231f6c89b6ccd70256445..7188ad2a6cf294ffb9bc5d68b6d60580a7b722a5 100755 (executable)
@@ -3,7 +3,41 @@ DIST="$1"
 DIR="$2"
 MIRROR="$3"
 
-debootstrap "$DIST" "$DIR" $MIRROR
+[ "$DIST" ] && [ "$DIR" ] && [ "$MIRROR" ] || {
+    echo "Usage: $0 <dist> <directory> <mirror>" >&2
+    exit 1
+}
+
+mkdir -p "$DIR"
+debootstrap "$DIST" "$DIR" "$MIRROR"
+
+# debian_chroot
+echo $DIST > $DIR/etc/debian_chroot
+
+# hosts
+echo "127.0.0.1 localhost.localdomain localhost" > $DIR/etc/hosts
+
+# users
+perl -naF: -e 'print if $F[2] >= 1000 and $F[2] < 2000' /etc/passwd >> $DIR/etc/passwd
+
+# locale
+chroot $DIR locale-gen $LANG
+
+# bind mounts
+if ! grep -q $DIR /etc/fstab; then
+    cat <<EOF >> /etc/fstab
+
+# $DIST chroot
+/home           $DIR/home none    bind    0 0
+/proc           $DIR/proc none    bind    0 0
+/sys            $DIR/sys  none    bind    0 0
+/tmp            $DIR/tmp  none    bind    0 0
+EOF
+    mount $DIR/home
+    mount $DIR/proc
+    mount $DIR/sys
+    mount $DIR/tmp
+fi
 
 # apt sources
 cat <<EOF > $DIR/etc/apt/sources.list
@@ -20,10 +54,5 @@ EOF
 chroot $DIR apt-get update
 
 # common packages for development
-chroot $DIR apt-get install -y build-essential devscripts fakeroot
-
-# debian_chroot
-echo $DIST > $DIR/etc/debian_chroot
+chroot $DIR apt-get install -y build-essential devscripts fakeroot
 
-# users
-perl -naF: -e 'print if $F[2] >= 1000 and $F[2] < 2000' /etc/passwd >> $DIR/etc/passwd