From 066c85b4f0e52ab4864d890480c94df0d29de715 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Wed, 31 Aug 2005 16:38:34 +0000 Subject: [PATCH] run a busy loop after we've finished the install, instead of kernel panicking svn path=/nixu/trunk/; revision=3762 --- fill-disk.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/fill-disk.sh b/fill-disk.sh index cf9a4c5eaec..fc3bb782e9d 100755 --- a/fill-disk.sh +++ b/fill-disk.sh @@ -348,8 +348,13 @@ cp /tmp/install-log $root/root echo umounting filesystem umount $root +umount /cdrom echo install done -#telinit 0 ln -s @sysvinitPath@/sbin/init /sbin/init -shutdown -h now + +echo it\'s safe to turn off your machine + +while true; do + sleep 60; +done