Commit 4311412b by James Laska

Correctly load up2date configuration

Previously, a configuration file name of None was being passed into
up2dateInitConfig().  This resulted in a correct configuration import,
but failed to properly save the configuration back to disk in the event
a different serverURL was supplied.  This change removes support for
customizing the up2date filename entirely, and relies on up2date to
choose the default config filename.
parent f42e3bf0
......@@ -158,15 +158,15 @@ class RegistrationBase (object):
class Rhn(RegistrationBase):
def __init__(self, username=None, password=None, filename=None):
def __init__(self, username=None, password=None):
RegistrationBase.__init__(self, username, password)
self.config = self._read_config(filename)
self.config = self.load_config()
def _read_config(self, filename=None):
def load_config(self):
'''
Read configuration from /etc/sysconfig/rhn/up2date
'''
self.config = up2date_client.config.initUp2dateConfig(filename)
self.config = up2date_client.config.initUp2dateConfig()
# Add support for specifying a default value w/o having to standup some
# configuration. Yeah, I know this should be subclassed ... but, oh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment