summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorJavier Jardon <jjardon@gnome.org>2015-03-23 23:27:11 +0000
committerJavier Jardón <jjardon@gnome.org>2015-03-24 00:10:26 +0000
commit6b31574c2df5d897818d7c414871fd7aff27d754 (patch)
tree19ecf3a91d6cf988e3a4e174364439311796dccc /morphlib
parent6e276cac1ab281cdf14f3a918d10cb65ce9e6c50 (diff)
downloadmorph-6b31574c2df5d897818d7c414871fd7aff27d754.tar.gz
simple-network: only try to rename "10-dhcp.network" if it actually exist
Change-Id: I1521c0bdec4d7a6812f8988a2349e66b08161de8
Diffstat (limited to 'morphlib')
-rwxr-xr-xmorphlib/exts/simple-network.configure14
1 files changed, 8 insertions, 6 deletions
diff --git a/morphlib/exts/simple-network.configure b/morphlib/exts/simple-network.configure
index 130b96c9..1ba94e86 100755
--- a/morphlib/exts/simple-network.configure
+++ b/morphlib/exts/simple-network.configure
@@ -81,12 +81,14 @@ class SimpleNetworkConfigurationExtension(cliapp.Application):
"""
file_path = os.path.join(args[0], "etc", "systemd", "network",
"10-dhcp.network")
- try:
- os.rename(file_path, file_path + ".morph")
- self.status(msg="Renaming networkd file from systemd chunk: %(f)s \
- to %(f)s.morph", f=file_path)
- except OSError:
- pass
+
+ if os.path.isfile(file_path):
+ try:
+ os.rename(file_path, file_path + ".morph")
+ self.status(msg="Renaming networkd file from systemd chunk: \
+ %(f)s to %(f)s.morph", f=file_path)
+ except OSError:
+ pass
def generate_default_network_config(self, args):
"""Generate default network config: DHCP in all the interfaces"""