From e438c2f7667cd015dff6980b98c2905099213c62 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Wed, 8 Oct 2014 13:32:24 -0400 Subject: [PATCH] Add check for Ubuntu on Power7 where iso called powerpc --- 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 c6c04fd6a..750b8d840 100755 --- a/xCAT-server/lib/xcat/plugins/debian.pm +++ b/xCAT-server/lib/xcat/plugins/debian.pm @@ -281,7 +281,7 @@ sub copycd { $darch = "ppc64el"; } - elsif ($darch and $darch =~ /ppc/) + elsif ($darch and ($darch =~ /ppc/ or $darch =~ /powerpc/)) { $darch = "ppc64"; }