Method: Puppet::Util::Windows::AccessControlEntry#inherit_only?
- Defined in:
- lib/puppet/util/windows/access_control_entry.rb
#inherit_only? ⇒ Boolean
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 only applies to children of the object. If false, it applies to the object.
not the object itself.
46 47 48 |
# File 'lib/puppet/util/windows/access_control_entry.rb', line 46 def inherit_only? (@flags & INHERIT_ONLY_ACE) == INHERIT_ONLY_ACE end |