Sean P. Kane wrote:
I am creating my first kickstart file and want to know where the NFS mount defined by nfs in mounted exactly, so if I am mounting mynfsserver:/opt/rh where will that be on the system during the install?
> I have some other
files in there I want to access in the post section.
If you are installing via NFS from mynfsserver:/opt/rh path, then that will be mounted on /mnt/source, and your system will be mounted on /mnt/sysimage. You will have to use `%post --nochroot` to access it, and make sure that you prepend /mnt/sysimage to the path to your system.
Forrest --