Module Backing_store.Specs

type zfs = {
zfs_root : string option;
}
type lvm = {
vg : string option;
lv : string option;
thin_pool : string option;
}
type rbd = {
rbd_name : string option;
rbd_pool : string option;
}
type t = {
fstype : string option;
fssize : int64;
zfs : zfs;
lvm : lvm;
rbd : rbd;
dir : string option;
}