# File lib/puppet/type/zpool.rb, line 10 10: def insync?(is) 11: return true unless self.should 12: 13: return @should == [:absent] if is == :absent 14: 15: flatten_and_sort(is) == flatten_and_sort(@should) 16: end