|
16 | 16 | # kiwi/schema/kiwi_for_generateDS.xsd |
17 | 17 | # |
18 | 18 | # Command line: |
19 | | -# /home/ms/Project/kiwi/.tox/unit_py3_11/bin/generateDS.py -f --external-encoding="utf-8" --no-dates --no-warnings -o "kiwi/xml_parse.py" kiwi/schema/kiwi_for_generateDS.xsd |
| 19 | +# /home/ms/.cache/pypoetry/virtualenvs/kiwi-Btua-i95-py3.11/bin/generateDS.py -f --external-encoding="utf-8" --no-dates --no-warnings -o "kiwi/xml_parse.py" kiwi/schema/kiwi_for_generateDS.xsd |
20 | 20 | # |
21 | 21 | # Current working directory (os.getcwd()): |
22 | 22 | # kiwi |
@@ -5967,13 +5967,14 @@ class bootloader(GeneratedsSuper): |
5967 | 5967 | provide configuration parameters for it""" |
5968 | 5968 | subclass = None |
5969 | 5969 | superclass = None |
5970 | | - def __init__(self, name=None, bls=None, s390_hkd_cert=None, s390_hkd_ca_cert=None, s390_hkd_sign_cert=None, console=None, serial_line=None, timeout=None, timeout_style=None, targettype=None, use_disk_password=None, grub_template=None, bootloadersettings=None): |
| 5970 | + def __init__(self, name=None, bls=None, s390_hkd_cert=None, s390_hkd_ca_cert=None, s390_hkd_sign_cert=None, s390_hkd_revocation_list=None, console=None, serial_line=None, timeout=None, timeout_style=None, targettype=None, use_disk_password=None, grub_template=None, bootloadersettings=None): |
5971 | 5971 | self.original_tagname_ = None |
5972 | 5972 | self.name = _cast(None, name) |
5973 | 5973 | self.bls = _cast(bool, bls) |
5974 | 5974 | self.s390_hkd_cert = _cast(None, s390_hkd_cert) |
5975 | 5975 | self.s390_hkd_ca_cert = _cast(None, s390_hkd_ca_cert) |
5976 | 5976 | self.s390_hkd_sign_cert = _cast(None, s390_hkd_sign_cert) |
| 5977 | + self.s390_hkd_revocation_list = _cast(None, s390_hkd_revocation_list) |
5977 | 5978 | self.console = _cast(None, console) |
5978 | 5979 | self.serial_line = _cast(None, serial_line) |
5979 | 5980 | self.timeout = _cast(int, timeout) |
@@ -6005,6 +6006,8 @@ def get_s390_hkd_ca_cert(self): return self.s390_hkd_ca_cert |
6005 | 6006 | def set_s390_hkd_ca_cert(self, s390_hkd_ca_cert): self.s390_hkd_ca_cert = s390_hkd_ca_cert |
6006 | 6007 | def get_s390_hkd_sign_cert(self): return self.s390_hkd_sign_cert |
6007 | 6008 | def set_s390_hkd_sign_cert(self, s390_hkd_sign_cert): self.s390_hkd_sign_cert = s390_hkd_sign_cert |
| 6009 | + def get_s390_hkd_revocation_list(self): return self.s390_hkd_revocation_list |
| 6010 | + def set_s390_hkd_revocation_list(self, s390_hkd_revocation_list): self.s390_hkd_revocation_list = s390_hkd_revocation_list |
6008 | 6011 | def get_console(self): return self.console |
6009 | 6012 | def set_console(self, console): self.console = console |
6010 | 6013 | def get_serial_line(self): return self.serial_line |
@@ -6070,6 +6073,9 @@ def exportAttributes(self, outfile, level, already_processed, namespaceprefix_=' |
6070 | 6073 | if self.s390_hkd_sign_cert is not None and 's390_hkd_sign_cert' not in already_processed: |
6071 | 6074 | already_processed.add('s390_hkd_sign_cert') |
6072 | 6075 | outfile.write(' s390_hkd_sign_cert=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.s390_hkd_sign_cert), input_name='s390_hkd_sign_cert')), )) |
| 6076 | + if self.s390_hkd_revocation_list is not None and 's390_hkd_revocation_list' not in already_processed: |
| 6077 | + already_processed.add('s390_hkd_revocation_list') |
| 6078 | + outfile.write(' s390_hkd_revocation_list=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.s390_hkd_revocation_list), input_name='s390_hkd_revocation_list')), )) |
6073 | 6079 | if self.console is not None and 'console' not in already_processed: |
6074 | 6080 | already_processed.add('console') |
6075 | 6081 | outfile.write(' console=%s' % (quote_attrib(self.console), )) |
@@ -6132,6 +6138,10 @@ def buildAttributes(self, node, attrs, already_processed): |
6132 | 6138 | if value is not None and 's390_hkd_sign_cert' not in already_processed: |
6133 | 6139 | already_processed.add('s390_hkd_sign_cert') |
6134 | 6140 | self.s390_hkd_sign_cert = value |
| 6141 | + value = find_attr_value_('s390_hkd_revocation_list', node) |
| 6142 | + if value is not None and 's390_hkd_revocation_list' not in already_processed: |
| 6143 | + already_processed.add('s390_hkd_revocation_list') |
| 6144 | + self.s390_hkd_revocation_list = value |
6135 | 6145 | value = find_attr_value_('console', node) |
6136 | 6146 | if value is not None and 'console' not in already_processed: |
6137 | 6147 | already_processed.add('console') |
|
0 commit comments