plugins are now able to add device specific text to /etc/networking/interfaces
[enigma2.git] / lib / python / Components / Network.py
index 884f97cd48540fc59c3dc6e1d21f64a998f606eb..37af0c98a0e263c7e9977abffc1818fd99ef8140 100644 (file)
@@ -113,6 +113,9 @@ class Network:
                                        fp.write("      netmask %d.%d.%d.%d\n" % tuple(iface['netmask']))
                                        if iface.has_key('gateway'):
                                                fp.write("      gateway %d.%d.%d.%d\n" % tuple(iface['gateway']))
+                                               
+                       if iface.has_key("configStrings"):
+                               fp.write("\n" + iface["configStrings"] + "\n")
                        fp.write("\n")
                fp.close()
                self.writeNameserverConfig()
@@ -211,6 +214,7 @@ class Network:
                return None
        
        def setAdapterAttribute(self, iface, attribute, value):
+               print "setting for adapter", iface, "attribute", attribute, " to value", value
                if self.ifaces.has_key(iface):
                        self.ifaces[iface][attribute] = value