X-Git-Url: http://git.datanom.net/omvzfs.git/blobdiff_plain/8a2223a43e8e699a92efe950117edd4179866335..a36352f77c28bdf8f2834a64bd8520b73bfcf040:/src/Utils.php diff --git a/src/Utils.php b/src/Utils.php index 13c89ed..251157a 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -27,6 +27,40 @@ class OMVModuleZFSUtil { return null; } + /** + * Add any missing ZFS pool to the OMV backend + * + */ + public static function addMissingOMVMntEnt() { + global $xmlConfig; + $msg = ""; + $cmd = "zpool list -H -o name"; + OMVModuleZFSUtil::exec($cmd, $out, $res); + foreach($out as $name) { + $pooluuid = OMVModuleZFSUtil::getUUIDbyName($name); + $xpath = "//system/fstab/mntent[fsname=" . $pooluuid . "]"; + $object = $xmlConfig->get($xpath); + if(is_null($object)) { + $uuid = OMVUtil::uuid(); + $ds = new OMVModuleZFSDataset($name); + $dir = $ds->getMountPoint(); + $object = array( + "uuid" => $uuid, + "fsname" => $pooluuid, + "dir" => $dir, + "type" => "zfs", + "opts" => "rw,relatime,xattr", + "freq" => "0", + "passno" => "2" + ); + $xmlConfig->set("//system/fstab",array("mntent" => $object)); + $dispatcher = &OMVNotifyDispatcher::getInstance(); + $dispatcher->notify(OMV_NOTIFY_CREATE,"org.openmediavault.system.fstab.mntent", $object); + } + } + return null; + } + /** * Get an array with all ZFS objects *