new releases, fai 2.2.1, fai-kernels 1.1.2
Chad Walstrom
chad at ima.umn.edu
Tue Oct 9 20:57:46 CEST 2001
Found a bug in /usr/share/fai/subroutines:get_dhcp_info(). The call to grep is
passed the $bootlog instead of the $dhcplog variable. As a result, the
installation hangs, waiting for stdin and EOF because there was not $bootlog
defined.
The patch is attached.
--
Chad C. Walstrom <chad at ima.umn.edu> http://www.ima.umn.edu
Assistant Systems Manager, IMA Phone: 612-624-4353
Fax: 612-626-7370
-------------- next part --------------
--- subroutines.old Tue Oct 9 12:45:01 2001
+++ subroutines Tue Oct 9 12:44:36 2001
@@ -218,7 +218,7 @@
local dhcplog=/tmp/dhcp.log
dhclient -lf /dev/null $netdevices >$dhcplog 2>/tmp/dhclient.log
[ -n "$verbose" -a -f $dhcplog ] && echo "Reading $dhcplog"
- eval `grep -v "^#" $bootlog`
+ eval `grep -v "^#" $dhcplog`
killall dhclient-2.2.x
}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
More information about the linux-fai
mailing list