diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-01 23:37:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-01 23:37:13 +0000 |
commit | 1fc999f31649942f37c5fa33cb433b23e872ec2c (patch) | |
tree | 0e78ef1bfaecf71c9fd7ad76ad718bf2f235bac8 /todo.py | |
parent | b028bbe9125d0719d7d0257a00df423537b2e187 (diff) | |
download | anaconda-1fc999f31649942f37c5fa33cb433b23e872ec2c.tar.gz anaconda-1fc999f31649942f37c5fa33cb433b23e872ec2c.tar.xz anaconda-1fc999f31649942f37c5fa33cb433b23e872ec2c.zip |
read in HOSTNAME
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -74,6 +74,9 @@ class Network: self.gateway = info["GATEWAY"] if info.has_key ("NS1"): self.primaryNS = info["NS1"] + if info.has_key ("HOSTNAME"): + self.hostname = info["HOSTNAME"] + self.readData = 1 def available (self): |