Merge pull request #24091 from AkihiroSuda/fixZFS24008

zfs: call mount.MakePrivate
This commit is contained in:
Alexander Morozov 2016-06-30 11:14:30 -07:00 committed by GitHub
commit b8cef7c19c
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ func Init(base string, opt []string, uidMaps, gidMaps []idtools.IDMap) (graphdri
return nil, fmt.Errorf("BUG: zfs get all -t filesystem -rHp '%s' should contain '%s'", options.fsName, options.fsName)
}
if err := mount.MakePrivate(base); err != nil {
return nil, err
}
d := &Driver{
dataset: rootDataset,
options: options,