I'm working on distributing a version of Fedora to our internal development team using Live CD. There are certain files I would like to copy to the live cd that are not:
- part of an RPM or
- going to live in the user's home directory.
Based on samples I've seen I'm trying something like the following in the post section of my kickstart file, to no avail.
%post --nochroot
cp -ar /tmp/files2copy $LIVE_ROOT/files
%end
Where is $LIVE_ROOT? Does it need to be exported earlier in the *.ks file? Do I need to create the files directory using mkdir?