fix bug in runroot plugin

Signed-off-by: Dennis Gilmore <ausil@fedoraproject.org>
This commit is contained in:
Dennis Gilmore 2015-07-09 22:50:03 +00:00
parent dc070143cf
commit 23f3174810

View file

@ -51,7 +51,7 @@ class RunRootTask(tasks.BaseTaskHandler):
else:
options.append(o)
rel_path = path[len(mount_data['mountpoint']):]
res = (os.path.join(mount_data['path'], rel_path), path, mount_data['fstype'], ','.join(options))
res = ("%s/%s" % (mount_data['path'], rel_path), path, mount_data['fstype'], ','.join(options))
return res
def _read_config(self):