From ad00bf6b77452dd17b1025909bbe128ccb6947f7 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Mon, 27 Oct 2008 13:50:39 +0000 Subject: [PATCH] -Use symlinks instead of hardlinks for BCD links git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2390 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/windows.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/windows.pm b/xCAT-server/lib/xcat/plugins/windows.pm index 28c0fa63e..2c7590095 100644 --- a/xCAT-server/lib/xcat/plugins/windows.pm +++ b/xCAT-server/lib/xcat/plugins/windows.pm @@ -123,9 +123,9 @@ sub mkwinlinks { link "$installroot/autoinst/$node.cmd","$installroot/autoinst/$_.cmd"; unlink "/tftpboot/Boot/BCD.$_"; if ($ent->{arch} =~ /64/) { - link "/tftpboot/Boot/BCD.64","/tftpboot/Boot/BCD.$_"; + symlink "/tftpboot/Boot/BCD.64","/tftpboot/Boot/BCD.$_"; } else { - link "/tftpboot/Boot/BCD.32","/tftpboot/Boot/BCD.$_"; + symlink "/tftpboot/Boot/BCD.32","/tftpboot/Boot/BCD.$_"; } } }