Quote:
Originally Posted by rbell54
I remove the "%post --nochroot" and change the location of the variable
|
I don't think you should move the %post line, just remove the --nochroot option.
Alternatively, you can leave the --nochroot but add
/mnt/sysimage/ to the beginning of all your file paths,
for example:
Quote:
SudoersFile="/etc/sudoers"
SSHFile="/etc/ssh/sshd_config"
|
should become:
Quote:
SudoersFile="/mnt/sysimage/etc/sudoers"
SSHFile="/mnt/sysimage/etc/ssh/sshd_config"
|