summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-12-02 16:23:18 -0800
committerGitHub <noreply@github.com>2016-12-02 16:23:18 -0800
commit4755f863b11a2aa717cfc53999cc005804428fd0 (patch)
tree133e23530b20137aeb8e013381b160ddcc7dc82b /lib
parent99adaa4499f24418cc07fca8d188947fc985e7a6 (diff)
parent2acb279140e1b0f21d2561911842b5696bbe042c (diff)
downloadchef-4755f863b11a2aa717cfc53999cc005804428fd0.tar.gz
Merge pull request #5603 from ttr/master
linux mount provider - skip device detection for zfs
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/provider/mount/mount.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/mount/mount.rb b/lib/chef/provider/mount/mount.rb
index 07da6ac361..49e825e39f 100644
--- a/lib/chef/provider/mount/mount.rb
+++ b/lib/chef/provider/mount/mount.rb
@@ -193,7 +193,7 @@ class Chef
def device_should_exist?
( @new_resource.device != "none" ) &&
( not network_device? ) &&
- ( not %w{ cgroup tmpfs fuse vboxsf }.include? @new_resource.fstype )
+ ( not %w{ cgroup tmpfs fuse vboxsf zfs }.include? @new_resource.fstype )
end
private