From 0d37662bb5cb08bc3d134b2f8ca1efc2f1691871 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Mon, 26 Jan 2015 11:44:16 -0500 Subject: [PATCH] Improve the error message for the missing netboot/initrd.gz on Ubuntu Linux. This needs to be obtained from the Ubuntu download site and copied over into the netboot directory. --- xCAT-server/lib/xcat/plugins/debian.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/debian.pm b/xCAT-server/lib/xcat/plugins/debian.pm index 2a9fa17f6..89023d3d3 100755 --- a/xCAT-server/lib/xcat/plugins/debian.pm +++ b/xCAT-server/lib/xcat/plugins/debian.pm @@ -713,7 +713,7 @@ sub mkinstall } if ($arch =~ /ppc64/i and !(-e "$pkgdir/install/netboot/initrd.gz")) { - $callback->({error => ["The netboot initrd not found in $pkgdir/install/netboot, pls download first"], + $callback->({error => ["The network boot initrd.gz is not found in $pkgdir/install/netboot. This is provided by Ubuntu, please download and retry."], errorcode=>[1]}); next; }