# File lib/puppet/network/rights.rb, line 264
264:     def <=>(rhs)
265:       # move namespace rights at front
266:       return self.acl_type == :name ? -1 : 1 if self.acl_type != rhs.acl_type
267: 
268:       # sort by creation order (ie first match appearing in the file will win)
269:       # that is don't sort, in which case the sort algorithm will order in the
270:       # natural array order (ie the creation order)
271:       0
272:     end