From 27747c44fa1a2b0f884bc1bf0c7ace18abfa8ca0 Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 6 Aug 2013 00:57:05 -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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/yaboot.pm b/xCAT-server/lib/xcat/plugins/yaboot.pm index 004b73360..6351ff2e6 100644 --- a/xCAT-server/lib/xcat/plugins/yaboot.pm +++ b/xCAT-server/lib/xcat/plugins/yaboot.pm @@ -296,7 +296,8 @@ sub setstate { my $pname = "yaboot.conf-" . $tmp; unlink($tftpdir."/".$pname); link($tftpdir."/etc/".$node,$tftpdir."/".$pname); - } + } + return; }