diff options
author | mccune <mccune@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 18:57:15 +0000 |
---|---|---|
committer | mccune <mccune@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 18:57:15 +0000 |
commit | 13c7f2f155b23bfb31ce4388a4109385f0c40293 (patch) | |
tree | 350ddedc70cc17087e45d0329881af604429e807 /lib | |
parent | 7f8a9036f1f4aaa19461507bc9bfae9626fade59 (diff) | |
download | puppet-13c7f2f155b23bfb31ce4388a4109385f0c40293.tar.gz puppet-13c7f2f155b23bfb31ce4388a4109385f0c40293.tar.xz puppet-13c7f2f155b23bfb31ce4388a4109385f0c40293.zip |
Allow Darwin to remount rather than unmount / mount, as per puppet-users discussion "mount type and ensure => present on OS X" (Message-Id: <C44C8E86-DF31-4344-9B74-937325A03F5F@madstop.com>)
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2498 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/puppet/type/mount.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/type/mount.rb b/lib/puppet/type/mount.rb index ea25d5b5b..e43de0f7b 100755 --- a/lib/puppet/type/mount.rb +++ b/lib/puppet/type/mount.rb @@ -165,7 +165,7 @@ module Puppet newvalues(:true, :false) defaultto do case Facter.value(:operatingsystem) - when "Darwin", "FreeBSD": false + when "FreeBSD": false else true end |