Lines Matching refs:cfg

40 import pkg.config as cfg
104 class ImageConfig(cfg.FileConfig):
112 cfg.PropertySection("filter", properties=[]),
113 cfg.PropertySection("image", properties=[
114 cfg.PropInt("version"),
116 cfg.PropertySection("property", properties=[
117 cfg.PropList("publisher-search-order"),
118 cfg.PropPublisher("preferred-authority"),
119 cfg.PropBool("display-coprights", default=True),
120 cfg.PropBool("require-optional", default=False),
121 cfg.PropBool("pursue-latest", default=True),
122 cfg.PropBool(FLUSH_CONTENT_CACHE,
124 cfg.PropBool(SEND_UUID,
127 cfg.PropertySection("variant", properties=[]),
128 cfg.PropertySectionTemplate("^authority_.*", properties=[
130 cfg.PropPublisher("alias", value_map=_val_map_none),
131 cfg.PropPublisher("prefix", value_map=_val_map_none),
132 cfg.PropBool("disabled"),
133 cfg.PropUUID("uuid", value_map=_val_map_none),
135 cfg.PropPubURIList("mirrors",
137 cfg.PropPubURI("origin", value_map=_val_map_none),
138 cfg.Property("ssl_cert", value_map=_val_map_none),
139 cfg.Property("ssl_key", value_map=_val_map_none),
141 cfg.PropDefined("repo.collection_type", ["core",
144 cfg.PropDefined("repo.description",
146 cfg.PropList("repo.legal_uris", value_map=_val_map_none),
147 cfg.PropDefined("repo.name", default="package repository",
150 cfg.Property("repo.refresh_seconds",
153 cfg.PropBool("repo.registered", value_map=_val_map_none),
154 cfg.Property("repo.registration_uri",
156 cfg.PropList("repo.related_uris",
158 cfg.Property("repo.sort_policy", value_map=_val_map_none),
162 cfg.PropertySection("image", properties=[
163 cfg.PropInt("version"),
167 cfg.PropertySection("property", properties=[
168 cfg.PropPublisher("preferred-authority"),
169 cfg.PropList("publisher-search-order"),
170 cfg.PropDefined(BE_POLICY, allowed=["default",
173 cfg.PropDefined(CONTENT_UPDATE_POLICY, allowed=["default",
176 cfg.PropBool(FLUSH_CONTENT_CACHE,
178 cfg.PropBool(MIRROR_DISCOVERY,
180 cfg.PropBool(SEND_UUID,
182 cfg.PropDefined(SIGNATURE_POLICY,
185 cfg.PropBool(USE_SYSTEM_REPO,
187 cfg.Property(CA_PATH,
189 cfg.Property("trust-anchor-directory",
191 cfg.PropList("signature-required-names"),
192 cfg.Property(CHECK_CERTIFICATE_REVOCATION,
195 cfg.PropList("dehydrated")
197 cfg.PropertySection("facet", properties=[
198 cfg.PropertyTemplate("^facet\..*", prop_type=cfg.PropBool),
200 cfg.PropertySection("inherited_facet", properties=[
201 cfg.PropertyTemplate("^facet\..*", prop_type=cfg.PropBool),
203 cfg.PropertySection("mediators", properties=[
204 cfg.PropertyTemplate("^[A-Za-z0-9\-]+\.implementation$"),
205 cfg.PropertyTemplate("^[A-Za-z0-9\-]+\.implementation-version$",
206 prop_type=cfg.PropVersion),
207 cfg.PropertyTemplate("^[A-Za-z0-9\-]+\.implementation-source$",
208 prop_type=cfg.PropDefined, allowed=["site", "vendor",
210 cfg.PropertyTemplate("^[A-Za-z0-9\-]+\.version$",
211 prop_type=cfg.PropVersion),
212 cfg.PropertyTemplate("^[A-Za-z0-9\-]+\.version-source$",
213 prop_type=cfg.PropDefined, allowed=["site", "vendor",
216 cfg.PropertySection("variant", properties=[]),
218 cfg.PropertySectionTemplate("^authority_.*", properties=[
220 cfg.PropPublisher("alias", value_map=_val_map_none),
221 cfg.PropPublisher("prefix", value_map=_val_map_none),
222 cfg.PropBool("disabled"),
223 cfg.PropBool("sticky"),
224 cfg.PropUUID("uuid", value_map=_val_map_none),
226 cfg.PropPubURIList("mirrors",
229 cfg.PropPubURIDictionaryList("mirror_info",
231 cfg.PropPubURI("origin", value_map=_val_map_none),
232 cfg.PropPubURIList("origins",
235 cfg.PropPubURIDictionaryList("origin_info",
239 cfg.Property("ssl_cert", value_map=_val_map_none),
240 cfg.Property("ssl_key", value_map=_val_map_none),
242 cfg.PropDefined("property.{0}".format(SIGNATURE_POLICY),
245 cfg.PropList("property.signature-required-names"),
246 cfg.PropList("intermediate_certs"),
247 cfg.PropList("approved_ca_certs"),
248 cfg.PropList("revoked_ca_certs"),
249 cfg.PropList("signing_ca_certs"),
251 cfg.PropDefined("repo.collection_type", ["core",
254 cfg.PropDefined("repo.description",
256 cfg.PropList("repo.legal_uris", value_map=_val_map_none),
257 cfg.PropDefined("repo.name", default="package repository",
260 cfg.Property("repo.refresh_seconds",
263 cfg.PropBool("repo.registered", value_map=_val_map_none),
264 cfg.Property("repo.registration_uri",
266 cfg.PropList("repo.related_uris",
268 cfg.Property("repo.sort_policy", value_map=_val_map_none),
270 cfg.PropertySectionTemplate("^linked_.*", properties=[
271 cfg.Property(li.PROP_NAME, value_map=_val_map_none),
272 cfg.Property(li.PROP_PATH, value_map=_val_map_none),
273 cfg.PropBool(li.PROP_RECURSE, default=True),
293 cfg.FileConfig.__init__(self, cfgpathname,
343 except cfg.UnknownSectionError:
394 rval = cfg.FileConfig.get_property(self, section, name)
415 cfg.FileConfig.reset(self, overrides=overrides)
460 disabled_cfg = cfg.FileConfig(dafile,
528 cfg.FileConfig.set_property(self, section, name, value)
554 cfg.FileConfig.set_properties(self, properties)
570 except cfg.UnknownSectionError:
578 except cfg.UnknownSectionError:
587 except cfg.UnknownSectionError:
596 except cfg.UnknownSectionError:
635 except cfg.UnknownPropertyError:
780 except cfg.UnknownPropertyError:
789 cfg.FileConfig.write(self)
872 # get the list of dictionaries from the cfg
985 except cfg.PropertyConfigError:
1049 except cfg.PropertyConfigError: