Hi JakeR,
That is a good question, Normally the %post sections from the %include are run first. But when a .ks that is called by %include calls another .ks with %include the second included %post runs first.
So if you want a %post section to be run last it is usually safe to add that %post section to the .ks you are calling with livecd-creator.
You can add a line to all the .ks's at the beginning of the %post sections that will show you during the build when they are ran by adding a line like this for live-base:
Code:
%post
echo "**************This is the beginning of the post section of live-base*********************"
or for fedora-live-desktop:
Code:
%post
echo "***************This is the beginning of the post section of fedora-live-desktop***************"
Hope this helps,