diff options
-rwxr-xr-x | lib/puppet/provider/mount/parsed.rb | 2 | ||||
-rwxr-xr-x | spec/unit/ral/types/mount.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/provider/mount/parsed.rb b/lib/puppet/provider/mount/parsed.rb index 20908333d..9bc1cf5a5 100755 --- a/lib/puppet/provider/mount/parsed.rb +++ b/lib/puppet/provider/mount/parsed.rb @@ -14,7 +14,7 @@ Puppet::Type.type(:mount).provide(:parsed, :filetype => :flat ) do include Puppet::Provider::Mount - confine :exists => fstab + #confine :exists => fstab commands :mountcmd => "mount", :umount => "umount" diff --git a/spec/unit/ral/types/mount.rb b/spec/unit/ral/types/mount.rb index 0c4b94177..7d01022b5 100755 --- a/spec/unit/ral/types/mount.rb +++ b/spec/unit/ral/types/mount.rb @@ -9,7 +9,7 @@ describe Puppet::Type::Mount do Puppet::Type::Mount.provider_feature(:refreshable).methods.should == [:remount] end - it "should have no default value" do + it "should have no default value for :ensure" do mount = Puppet::Type::Mount.create(:name => "yay") mount.should(:ensure).should be_nil end |