Signed-off-by: Drew Hubl <drew.hubl@gmail.com> Signed-off-by: Brian Goff <cpuguy83@gmail.com> Upstream-commit: 27b002f4a02e2d9f6eded9004b82cb81f121264f Component: engine
29 lines
615 B
Go
29 lines
615 B
Go
package zfs
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/graphdriver"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func checkRootdirFs(rootDir string) error {
|
|
fsMagic, err := graphdriver.GetFSMagic(rootDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
backingFS := "unknown"
|
|
if fsName, ok := graphdriver.FsNames[fsMagic]; ok {
|
|
backingFS = fsName
|
|
}
|
|
|
|
if fsMagic != graphdriver.FsMagicZfs {
|
|
logrus.WithField("root", rootDir).WithField("backingFS", backingFS).WithField("driver", "zfs").Error("No zfs dataset found for root")
|
|
return graphdriver.ErrPrerequisites
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func getMountpoint(id string) string {
|
|
return id
|
|
}
|