<div dir="ltr"><div>All Kickstart files for Red Hat distributions in the UnattendedTemplates directory run the redhat_postinstall.sh script with --nochroot in the %post section.<br><br>This includes the following files:<br>rhel3_ks.cfg<br>rhel4_ks.cfg<br>rhel5_ks.cfg<br>rhel67_ks.cfg<br>fedora_ks.cfg</div><div><br></div><div>Nonetheless, the redhat_postinstall.sh script includes the following comment:<br># Note! This script expects to be running chrooted (inside new sytem).<br><br>The patch below removes this comment. I'm licensing this patch under the MIT license. Please review and consider integrating. Feedback is welcome. Thanks!</div><div><br></div><div>Timothy Tacker</div><div><br></div><div><br></div>diff --git a/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh b/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh<br>index 82f77590..4e23084c 100755<br>--- a/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh<br>+++ b/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh<br>@@ -2,8 +2,6 @@<br> ## @file<br> # Post installation script template for redhat- distros.<br> #<br>-# Note! This script expects to be running chrooted (inside new sytem).<br>-#<br> <br> #<br> # Copyright (C) 2017-2020 Oracle Corporation</div>