The problem was the init script. I had to change
openvt -f -c 1 -w /etc/master to openvt -f -c 1 -w sh /etc/master
init script below
#!/bin/bash echo WELCOME!!! /bin/mkdir /tmp /bin/mkdir /sys /bin/mount -t sysfs sysfs /sys /bin/mkdir /proc /bin/mount -t proc proc /proc /bin/mkdir /dev/pts /bin/mount -t devpts devpts /dev/pts /bin/mkdir /z # For playing random games /bin/mkdir /mnt PATH=/usr/local/sbin:/usr/local/bin:/sbin:/usr/sbin:/bin:/usr/bin export PATH # Fire up shells on virtual consoles 2 and 3 if openvt -c 2 bash ; then openvt -c 3 bash openvt -f -c 1 -w sh /etc/master else echo "Hm, maybe we are on a serial console. Running /etc/master directly." /etc/master fi echo "**** Master script exited!" exec bash
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm for more information.
------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace_______________________________________________ unattended-devel mailing list unattended-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/unattended-devel