summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/builder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index 6894c318..bf607d34 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -503,9 +503,9 @@ class SystemBuilder(BlobBuilder): # pragma: no cover
if not os.path.exists(os.path.dirname(fstab)):
os.makedirs(os.path.dirname(fstab))
with open(fstab, 'w') as f:
- f.write('proc /proc proc defaults 0 0')
- f.write('sysfs /sys sysfs defaults 0 0')
- f.write('/dev/sda1 / ext4 errors=remount-ro 0 1')
+ f.write('proc /proc proc defaults 0 0\n')
+ f.write('sysfs /sys sysfs defaults 0 0\n')
+ f.write('/dev/sda1 / ext4 errors=remount-ro 0 1\n')
def _install_extlinux(self, mount_point):
with self.build_watch('install-bootloader'):