-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
This commit is contained in:
jbjohnso 2008-10-27 13:50:39 +00:00
parent 4c5f4d8d53
commit ad00bf6b77

View File

@ -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.$_";
}
}
}