summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-03-28 00:10:13 +1100
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit83ac6b8b8c49e455b58671ae64f7423ae66ceb1d (patch)
tree92f4e75d6fcaea4b9515715e70ae48542f3deae6 /lib
parentdfe5c3aba1e467546a4acbe5ee148dec3033d0a7 (diff)
downloadpuppet-83ac6b8b8c49e455b58671ae64f7423ae66ceb1d.tar.gz
puppet-83ac6b8b8c49e455b58671ae64f7423ae66ceb1d.tar.xz
puppet-83ac6b8b8c49e455b58671ae64f7423ae66ceb1d.zip
Fixed #3443 - Typo in mount type
Diffstat (limited to 'lib')
-rwxr-xr-xlib/puppet/type/mount.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/puppet/type/mount.rb b/lib/puppet/type/mount.rb
index 25ca5e9d0..e79bc0a4a 100755
--- a/lib/puppet/type/mount.rb
+++ b/lib/puppet/type/mount.rb
@@ -140,8 +140,9 @@ module Puppet
end
newproperty(:dump) do
- desc "Whether to dump the mount. Not all platforms
-+ support this. Valid values are ``1`` or ``0``. or ``2`` on FreeBSD, Default is ``0``."
+ desc "Whether to dump the mount. Not all platform support this.
+ Valid values are ``1`` or ``0``. or ``2`` on FreeBSD, Default is ``0``."
+
if Facter["operatingsystem"].value == "FreeBSD"
newvalue(%r{(0|1|2)})
else