diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-07 19:15:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-07 19:15:35 +0000 |
commit | 5ec3046ed5cdf3eefbfc01868a641c320a781e9c (patch) | |
tree | c23877dfeb93b25ca0c2b7a20e493c7f1950d410 /installclass.py | |
parent | 9e4e02c9289d3ba8ad426585606c29bddd395d5c (diff) | |
download | anaconda-5ec3046ed5cdf3eefbfc01868a641c320a781e9c.tar.gz anaconda-5ec3046ed5cdf3eefbfc01868a641c320a781e9c.tar.xz anaconda-5ec3046ed5cdf3eefbfc01868a641c320a781e9c.zip |
todo.py
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/installclass.py b/installclass.py index 68a5169ea..29f34a77f 100644 --- a/installclass.py +++ b/installclass.py @@ -131,6 +131,9 @@ class InstallClass: self.gateway = gateway self.nameserver = nameserver + def setZeroMbr(self, state): + self.zeroMbr = state + def getNetwork(self): return (self.bootProto, self.ip, self.netmask, self.gateway, self.nameserver) @@ -156,6 +159,7 @@ class InstallClass: self.clearParts = 0 self.clearText = None self.clearPartText = None + self.zeroMbr = 0 # custom installs are easy :-) class CustomInstall(InstallClass): |