Re: Kickstart ordering
Chris Lumens <[email protected]> Thu, 18 Aug 2016 14:03:48 -0400
| Newsgroups | gmane.linux.redhat.kickstart.general |
|---|---|
| Message-ID | <[email protected]> |
> I generate a kickstart via from python code and generation if fine. > But order of section in my case is: > > - partitioning, users, repositories etc. > - %pre section > - %post section > - %packages section > > But what about if I would like to change the order to: > - partitioning, users, repositories etc. > - %pre section > - %packages section > - %post section > > Post and packages are exchanged. This would require code changes - check out BaseHandler.__str__ in pykickstart/base.py. - Chris