Package yum :: Module config :: Class RepoConf
[hide private]
[frames] | no frames]

Class RepoConf

source code


Option definitions for repository INI file sections.

Instance Methods [hide private]
 
iterkeys(self)
Yield the names of all defined options in the instance.
source code

Inherited from BaseConfig: __init__, __str__, getConfigOption, iteritems, populate, setConfigOption, write

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Methods [hide private]

Inherited from BaseConfig: isoption, optionobj

Class Variables [hide private]
  __cached_keys = set([])
  name = Option()
  enabled = Inherit(YumConf.enabled)
  baseurl = UrlListOption()
  mirrorlist = UrlOption()
  metalink = UrlOption()
  mediaid = Option()
  gpgkey = UrlListOption()
  exclude = ListOption()
  includepkgs = ListOption()
  proxy = Inherit(YumConf.proxy)
  proxy_username = Inherit(YumConf.proxy_username)
  proxy_password = Inherit(YumConf.proxy_password)
  retries = Inherit(YumConf.retries)
  failovermethod = Inherit(YumConf.failovermethod)
  gpgcheck = Inherit(YumConf.gpgcheck)
  repo_gpgcheck = Inherit(YumConf.repo_gpgcheck)
  keepalive = Inherit(YumConf.keepalive)
  enablegroups = Inherit(YumConf.enablegroups)
  bandwidth = Inherit(YumConf.bandwidth)
  throttle = Inherit(YumConf.throttle)
  timeout = Inherit(YumConf.timeout)
  http_caching = Inherit(YumConf.http_caching)
  metadata_expire = Inherit(YumConf.metadata_expire)
  mirrorlist_expire = Inherit(YumConf.mirrorlist_expire)
  mdpolicy = Inherit(YumConf.mdpolicy)
  cost = IntOption(1000)
  sslcacert = Inherit(YumConf.sslcacert)
  sslverify = Inherit(YumConf.sslverify)
  sslclientcert = Inherit(YumConf.sslclientcert)
  sslclientkey = Inherit(YumConf.sslclientkey)
  skip_if_unavailable = BoolOption(False)
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

iterkeys(self)

source code 

Yield the names of all defined options in the instance.

Overrides: BaseConfig.iterkeys