X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e40c611f0cf2653a48571f0081cf193ebfd2ffcf..1bd4065bcdb4c438f986e8ec0e19dfef9550d402:/lib/python/Components/Network.py diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 8375d235..590edefd 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -21,6 +21,12 @@ class Network: fp.write(" gateway %d.%d.%d.%d\n" % tuple(config.network.gateway.value)) fp.close() + if config.network.dhcp.value == 0: + fp = file('/etc/resolv.conf', 'w') + fp.write("nameserver %d.%d.%d.%d\n" % tuple(config.network.dns.value)) + fp.close() + + def loadNetworkConfig(self): try: # parse the interfaces-file @@ -48,7 +54,7 @@ class Network: ifaces[currif]["gateway"] = map(int, split[1].split('.')) # parse the resolv.conf-file - fp = file('/etc/network/interfaces', 'r') + fp = file('/etc/resolv.conf', 'r') resolv = fp.readlines() fp.close() except: @@ -137,7 +143,7 @@ def InitNetwork(): config.network = ConfigSubsection() - config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, (_("no"), _("yes"))) + config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, (("no", _("no")), ("yes", _("yes")))) config.network.ip = configElement_nonSave("config.network.ip", configSequence, ip, configsequencearg.get("IP")) config.network.netmask = configElement_nonSave("config.network.netmask", configSequence, [255,255,255,0], configsequencearg.get("IP")) config.network.gateway = configElement_nonSave("config.network.gateway", configSequence, [192,168,1,3], configsequencearg.get("IP"))