X-Git-Url: http://git.datanom.net/omvzfs.git/blobdiff_plain/13b8ca82f64b20c10fc6a814a5ae29c68b8b7a6f..42856e8b3cb0b621218f11d7828a51d03d77ae33:/src/Utils.php diff --git a/src/Utils.php b/src/Utils.php index 13c89ed..527d0f3 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -17,11 +17,53 @@ class OMVModuleZFSUtil { preg_match('/^([A-Za-z0-9]+)\/?.*$/', $name, $result); $name = $result[1]; unset($result); - $cmd = "blkid -o full"; + $cmd = "zpool get guid " . $name . " 2>&1"; OMVModuleZFSUtil::exec($cmd, $out, $res); - foreach($out as $line) { - if(preg_match('/^.*LABEL=\"' . $name . '\" UUID=\"([A-Za-z0-9]+)\".*TYPE=\"zfs_member\"$/', $line, $result)) { - return($result[1]); + if (isset($out)) { + $headers = preg_split('/[\s]+/', $out[0]); + for ($i=0; $iget($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;