From Bugzilla Helper: User-Agent: Mozilla/4.75 [en] (X11; U; Linux 2.2.16-22 i686) In loader/loader.c, the following code appears: mlLoadModule("nfs", NULL, modLoaded, *modDepsPtr, NULL, NULL, flags); if (doPwMount(ksPath, "/tmp/nfskd", "nfs", 1, 0, NULL, NULL)) { logMessage("failed to mount %s", ksPath); return 1; } fullFn = malloc(strlen(file) + 20); sprintf(fullFn, "/tmp/nfskd/%s", file); copyFile(fullFn, location); umount("/tmp/nfs"); The last line should be umount("/tmp/nfskd"); Reproducible: Always Steps to Reproduce: 1. do a kickstart install using a config file on an nfs server Actual Results: notice that /tmp/nfskd does not get unmounted Expected Results: /tmp/nfskd should be unmounted after the kickstart config file is copied
<blush> Fixed.
Our installer team-lead thinks we should really fix this before next release.