X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c8c1d6da7043122e5d77c20f8ce61d677519bb8b..fe798a5d31319171dbb76c6d9fec268e691d3f77:/lib/python/Components/Network.py diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index e3077d00..c38c44c6 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -78,6 +78,7 @@ class Network: def activateNetworkConfig(self): import os os.system("/etc/init.d/networking restart") + config.network.ip.value = self.getCurrentIP() def setDHCP(self, useDHCP): if (useDHCP): @@ -118,17 +119,20 @@ class Network: #os.system("echo ifconfig eth0 netmask %d.%d.%d.%d" % tuple(ip)) #self.writeNetworkConfig() + def getCurrentIP(self): + ip = [0, 0, 0, 0] + try: + print gethostbyname(gethostname()) + ip = gethostbyname(gethostname()).split('.') + except: + print "[Network.py] Could not get current ip (not necessarily an error)" + return ip iNetwork = Network() def InitNetwork(): - try: - ip = [0, 0, 0, 0] - print gethostbyname(gethostname()) - ip = gethostbyname(gethostname()).split('.') - print ip - except: - print "[Network.py] Could not get current ip (not necessarily an error)" + ip = iNetwork.getCurrentIP() + config.network = ConfigSubsection() config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, (_("no"), _("yes")))