> diff --git a/pykickstart/data.py b/pykickstart/data.py > index 54a989e..aab8e70 100644 > --- a/pykickstart/data.py > +++ b/pykickstart/data.py > @@ -22,7 +22,7 @@ class KickstartData: > self.autostep = {"autoscreenshot": False} > self.bootloader = {"appendLine": "", "driveorder": [], > "forceLBA": False, "location": "mbr", "md5pass": "", > - "password": "", "upgrade": False} > + "password": "", "upgrade": False, "hvArgs": ""} > self.dmraids = [] > self.encrypted = False > self.mpaths = [] > diff --git a/pykickstart/parser.py b/pykickstart/parser.py > index aea3285..5c93de5 100644 > --- a/pykickstart/parser.py > +++ b/pykickstart/parser.py > @@ -345,6 +345,7 @@ class KickstartHandlers: > default=False) > op.add_option("--driveorder", dest="driveorder", action="callback", > callback=driveorder_cb, nargs=1, type="string") > + op.add_option("--hvargs", dest="hvArgs") > > (opts, extra) = op.parse_args(args=args) > self._setToDict(op, opts, self.ksdata.bootloader) Looks fine, but we'll also need to add this to master pykickstart too. I can do that if you don't want to. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list