lxc-start-ephemeral: Fix syntax error in aufs

Signed-off-by: Åsmund Grammeltvedt <asmundg@snap.tv>
Acked-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Åsmund Grammeltvedt 2014-01-13 23:34:57 +01:00 committed by Stéphane Graber
parent 9accc2efea
commit 3aa0acaf0c

View File

@ -212,7 +212,7 @@ LXC_NAME="%s"
entry[1])) entry[1]))
elif args.union_type == "aufs": elif args.union_type == "aufs":
fd.write("mount -n -t aufs " fd.write("mount -n -t aufs "
"-o br=${upper}=rw:${lower}=ro,noplink none %s\n" % ( "-o br=%s=rw:%s=ro,noplink none %s\n" % (
target, target,
entry[0], entry[0],
entry[1])) entry[1]))