aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2014-11-25 16:47:00 +0100
committerDavid Howells <dhowells@redhat.com>2015-05-14 11:35:04 +0100
commitabf0cc36be69d4e6f572fe870c87575eb39e3588 (patch)
tree1fdf7ef6a45d63c5e16430ed634fbe80dd30f047
parenta7ae2fddfc6b4741ad21a7da9d2425f3b3235f88 (diff)
testsuite: overlayfs -> overlay
Following patch fixes testsuite to use the right fstype. This was changed in linux tree by ef94b1864d1e ovl: rename filesystem type to "overlay"
-rw-r--r--mount_union.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mount_union.py b/mount_union.py
index 4999daa..e1963d6 100644
--- a/mount_union.py
+++ b/mount_union.py
@@ -27,6 +27,6 @@ def mount_union(ctx):
workdir = upper_mntroot + "/work"
os.mkdir(upperdir)
os.mkdir(workdir)
- system("mount -t overlayfs overlayfs " + union_mntroot +
+ system("mount -t overlay overlay " + union_mntroot +
" -olowerdir=" + lower_mntroot + ",upperdir=" + upperdir + ",workdir=" + workdir)
ctx.note_upper_fs(upper_mntroot, testdir)