summaryrefslogtreecommitdiff
path: root/morphlib/writeexts.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-02-07 11:45:19 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-02-07 12:57:30 +0000
commite89cdd46dc1cf9ccb17e4d57fb212445481ec855 (patch)
tree4cc877748a1b18620a2a23090abd4fb1b7f38f45 /morphlib/writeexts.py
parent46e7e99c2b56766a3e858c7cb1584937a748a572 (diff)
downloadmorph-e89cdd46dc1cf9ccb17e4d57fb212445481ec855.tar.gz
Do away with unnecessary fstab entries for proc, sys
Suggested-By: Richard Maw
Diffstat (limited to 'morphlib/writeexts.py')
-rwxr-xr-xmorphlib/writeexts.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/morphlib/writeexts.py b/morphlib/writeexts.py
index a407c059..fae0d5d9 100755
--- a/morphlib/writeexts.py
+++ b/morphlib/writeexts.py
@@ -127,8 +127,6 @@ class WriteExtension(cliapp.Application):
self.status(msg='Creating fstab')
fstab = os.path.join(real_root, 'factory', 'etc', 'fstab')
with open(fstab, 'w') as f:
- f.write('proc /proc proc defaults 0 0\n')
- f.write('sysfs /sys sysfs defaults 0 0\n')
f.write('/dev/sda / btrfs defaults,rw,noatime 0 1\n')
def install_extlinux(self, real_root):