mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9392838150
Now all of the storage drivers use the field "storage-driver" in their log messages, which is set to name of the respective driver. Storage drivers changed: - Aufs - Btrfs - Devicemapper - Overlay - Overlay 2 - Zfs Signed-off-by: Alejandro GonzÃlez Hevia <alejandrgh11@gmail.com>
28 lines
683 B
Go
28 lines
683 B
Go
package zfs // import "github.com/docker/docker/daemon/graphdriver/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("storage-driver", "zfs").Error("No zfs dataset found for root")
|
|
return graphdriver.ErrPrerequisites
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func getMountpoint(id string) string {
|
|
return id
|
|
}
|