summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardon <jjardon@gnome.org>2015-03-23 23:14:05 +0000
committerJavier Jardón <jjardon@gnome.org>2015-03-24 00:10:08 +0000
commit8e691df0c964bbb8b20e8e66e37402a5fc854b37 (patch)
tree65a15d57ef2019d021d669b4a6861c07f411bc59
parent813573c351e9f790992e66ee225965340b55aceb (diff)
downloaddefinitions-8e691df0c964bbb8b20e8e66e37402a5fc854b37.tar.gz
simple-network: separate creation of directory and file path
Change-Id: Ic715815bbad3ef1ee9ab457b62a194eaef45744c
-rwxr-xr-xsimple-network.configure12
1 files changed, 8 insertions, 4 deletions
diff --git a/simple-network.configure b/simple-network.configure
index 61113325..42bf1b82 100755
--- a/simple-network.configure
+++ b/simple-network.configure
@@ -106,7 +106,10 @@ class SimpleNetworkConfigurationExtension(cliapp.Application):
"""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:
+
+ directory_path = os.path.join(args[0], "etc", "network")
+ file_path = os.path.join(directory_path, "interfaces")
+ with open(file_path, "w") as f:
f.write(iface_file)
def generate_iface_file(self, stanzas):
@@ -147,10 +150,11 @@ class SimpleNetworkConfigurationExtension(cliapp.Application):
if iface_file is None:
continue
- path = os.path.join(args[0], "etc", "systemd", "network",
- "%s-%s.network" % (i, stanza['name']))
+ directory_path = os.path.join(args[0], "etc", "systemd", "network")
+ file_path = os.path.join(directory_path,
+ "%s-%s.network" % (i, stanza['name']))
- with open(path, "w") as f:
+ with open(file_path, "w") as f:
f.write(iface_file)
def generate_networkd_file(self, stanza):