From ed76737d329861f85d5e947548de67350f651935 Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 6 Aug 2013 00:46:06 -0700 Subject: [PATCH] fix defect 3245 2.8:return value of nodeset does not equal to 0 on ppc64 --- xCAT-server/lib/xcat/plugins/yaboot.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/yaboot.pm b/xCAT-server/lib/xcat/plugins/yaboot.pm index 004b73360..caaca2f83 100644 --- a/xCAT-server/lib/xcat/plugins/yaboot.pm +++ b/xCAT-server/lib/xcat/plugins/yaboot.pm @@ -296,7 +296,9 @@ sub setstate { my $pname = "yaboot.conf-" . $tmp; unlink($tftpdir."/".$pname); link($tftpdir."/etc/".$node,$tftpdir."/".$pname); - } + } + + return; }