Method: Puppet::Util::Windows::AccessControlEntry#==
- Defined in:
- lib/puppet/util/windows/access_control_entry.rb
#==(other) ⇒ Object Also known as: eql?
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns true if this ACE is equal to other
77 78 79 80 81 82 83 |
# File 'lib/puppet/util/windows/access_control_entry.rb', line 77 def ==(other) self.class == other.class && sid == other.sid && mask == other.mask && flags == other.flags && type == other.type end |