mounts: include tree directory in arguments

Include the path to the tree for all mount services, so that future
services can e.g. bind mount something inside the tree.
This commit is contained in:
Christian Kellner 2021-10-08 17:02:30 +00:00 committed by Tom Gundersen
parent f50146d3c5
commit a27b3f78bc

View file

@ -63,9 +63,11 @@ class MountManager:
args = {
"source": source,
"root": self.root,
"target": mount.target,
"root": self.root,
"tree": self.devices.tree,
"options": mount.options,
}