# File lib/puppet/type/yumrepo.rb, line 8
 8:         def insync?(is)
 9:             # A should property of :absent is the same as nil
10:             if is.nil? && (should.nil? || should == :absent)
11:                 return true
12:             end
13:             return super(is)
14:         end