xcat-core
xcat-core copied to clipboard
post.xcat.ng doesn't work on centos8.4 diskful installation.
When I want to provision centos8.4 diskful node, I used the post.xcat.ng in the compute.centos8.tmpl for node kickstart template as below:
%pre { echo "Running Kickstart Pre-Installation script..." #INCLUDE:#ENV:XCATROOT#/share/xcat/install/scripts/pre.rhels8# } &>>/tmp/pre-install.log
%end
%post mkdir -p /var/log/xcat/ { cat >> /var/log/xcat/xcat.log << "EOF" %include /tmp/pre-install.log EOF echo "Running Kickstart Post-Installation script..." #INCLUDE:#ENV:XCATROOT#/share/xcat/install/scripts/post.xcat.ng# #INCLUDE:#ENV:XCATROOT#/share/xcat/install/scripts/post.rhels8# } &>>/var/log/xcat/xcat.log
it will result in the node is always installing forever, because there is no update node status action triggered from xcat.post.ng script.
is there someone to know how to deal with this issue?