Context
- Centos 7
- Kickstart
Issue
According to RH documentation :
--nochroot:
Allows you to specify commands that you would like to run outside of the chroot environment.
The following example copies the file /etc/resolv.conf to the file system that was just installed.
%post --nochroot
cp /etc/resolv.conf /mnt/sysimage/etc/resolv.conf
%end
The question is : where should i store the file resolv.conf
in the ISO tree in order that kickstart access it ?