summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <javier.jardon@codethink.co.uk>2015-03-06 12:21:05 +0000
committerJavier Jardón <javier.jardon@codethink.co.uk>2015-03-16 17:59:53 +0000
commit5258835b5440bf1217186dc76299a55149ce3562 (patch)
treeef56fdfe9a3efcda59d81ea5e4f0152955739e7e
parent165284e52da496799b9029312fb927a2c3dbfc3b (diff)
downloaddefinitions-5258835b5440bf1217186dc76299a55149ce3562.tar.gz
simple-network.configure: Move the generation of /etc/network/interfaces to a function
-rwxr-xr-xsimple-network.configure7
1 files changed, 6 insertions, 1 deletions
diff --git a/simple-network.configure b/simple-network.configure
index 13884e9d..c533ff22 100755
--- a/simple-network.configure
+++ b/simple-network.configure
@@ -48,8 +48,13 @@ class SimpleNetworkConfigurationExtension(cliapp.Application):
self.status(msg="Processing NETWORK_CONFIG=%(nc)s", nc=network_config)
stanzas = self.parse_network_stanzas(network_config)
- iface_file = self.generate_iface_file(stanzas)
+ self.generate_interfaces_file(args, stanzas)
+
+ def generate_interfaces_file(self, args, stanzas):
+ """Generate /etc/network/interfaces file"""
+
+ iface_file = self.generate_iface_file(stanzas)
with open(os.path.join(args[0], "etc/network/interfaces"), "w") as f:
f.write(iface_file)