X-Git-Url: http://git.datanom.net/omvzfs.git/blobdiff_plain/cf4e471d86e8b05678e56f58a44212a43a6f9c82..9b2acb8e1c4e91bf2d855b1f96efa0464e212eb9:/src/Zpool.php diff --git a/src/Zpool.php b/src/Zpool.php index 41fd052..87e5f0c 100644 --- a/src/Zpool.php +++ b/src/Zpool.php @@ -122,7 +122,7 @@ class OMVModuleZFSZpool extends OMVModuleAbstract { * @throws OMVModuleZFSException */ - public function __construct($vdev) { + public function __construct($vdev, $opts = "") { $create_pool = true; if (is_array($vdev)) { @@ -144,7 +144,7 @@ class OMVModuleZFSZpool extends OMVModuleAbstract { $this->cache = null; $this->features = array(); if ($create_pool) { - $cmd = "zpool create $name $cmd 2>&1"; + $cmd = "zpool create $opts$name $cmd 2>&1"; OMVUtil::exec($cmd, $output, $result); if ($result) @@ -636,7 +636,7 @@ class OMVModuleZFSZpool extends OMVModuleAbstract { * @param string $attribute * @return string value */ - private function getAttribute($attribute) { + public function getAttribute($attribute) { $cmd = "zpool list -H -o $attribute {$this->name}"; OMVUtil::exec($cmd, $output, $result); if ($result) { @@ -753,7 +753,7 @@ class OMVModuleZFSZpool extends OMVModuleAbstract { $dev = null; } $type = $match[1]; - } else if (preg_match("/^\s*([\w\d-]+)\s+/", $line, $match)) { + } else if (preg_match("/^\s*([\w\d-a-z0-9\:\.\-]+)\s+/", $line, $match)) { if ($dev) $dev .= " $match[1]"; else