summaryrefslogtreecommitdiffstats
path: root/lib/puppet/type/zpool.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/type/zpool.rb')
-rwxr-xr-xlib/puppet/type/zpool.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/puppet/type/zpool.rb b/lib/puppet/type/zpool.rb
index 11618256f..85f394fa0 100755
--- a/lib/puppet/type/zpool.rb
+++ b/lib/puppet/type/zpool.rb
@@ -35,7 +35,7 @@ module Puppet
newtype(:zpool) do
@doc = "Manage zpools. Create and delete zpools. The provider WILL NOT SYNC, only report differences.
- Supports vdevs with mirrors, raidz, logs and spares."
+ Supports vdevs with mirrors, raidz, logs and spares."
ensurable
@@ -45,7 +45,7 @@ module Puppet
newproperty(:mirror, :array_matching => :all, :parent => Puppet::Property::MultiVDev) do
desc "List of all the devices to mirror for this pool. Each mirror should be a space separated string.
- mirror => [\"disk1 disk2\", \"disk3 disk4\"]"
+ mirror => [\"disk1 disk2\", \"disk3 disk4\"]"
validate do |value|
if value.include?(",")
@@ -56,7 +56,7 @@ module Puppet
newproperty(:raidz, :array_matching => :all, :parent => Puppet::Property::MultiVDev) do
desc "List of all the devices to raid for this pool. Should be an array of space separated strings.
- raidz => [\"disk1 disk2\", \"disk3 disk4\"]"
+ raidz => [\"disk1 disk2\", \"disk3 disk4\"]"
validate do |value|
if value.include?(",")
@@ -76,7 +76,7 @@ module Puppet
newparam(:pool) do
desc "The name for this pool."
isnamevar
- end
+ end
newparam(:raid_parity) do
desc "Determines parity when using raidz property."