]> spindle.queued.net Git - xodist/blobdiff - functions.sh
mkchroot: s/awesom/awesome/
[xodist] / functions.sh
index ab7dbe58bfd5005234f41c7a7314d034e1a90250..4acc14f949a6f366af9a978b88bb28e1757d4a4d 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/sh -e
+#!/bin/bash -e
 #
 # Copyright © 2008  Andres Salomon <dilinger@queued.net>
 #
@@ -95,22 +95,17 @@ else
        " \${DN}\\vmlinuz" expand\$ to boot-device
        " \${DN}\\initrd.img" expand\$ to ramdisk
 then
+dcon-unfreeze
 boot
 EOF
 }
 
-chroot_internal_mounts()
+start_logging()
 {
-    root_dir="$1"
-    mount -t proc proc ${root_dir}/proc
-    mount -t devpts devpts ${root_dir}/dev/pts
-    mount -t tmpfs tmpfs ${root_dir}/var/cache/apt/cache
-}
-
-chroot_internal_umounts()
-{
-    root_dir="$1"
-    umount ${root_dir}/proc
-    umount ${root_dir}/dev/pts
-    umount ${root_dir}/var/cache/apt/cache
+    logpipe="$1".pipe
+    trap "rm -f $logpipe" 0
+    mknod $logpipe p
+    tee "$1".log <$logpipe &
+    trap "kill $!; rm -f $logpipe" 0
+    exec >$logpipe 2>&1
 }