Method: Puppet::Util::Windows::AccessControlList#inspect
- Defined in:
- lib/puppet/util/windows/access_control_list.rb
#inspect ⇒ Object
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.
99 100 101 102 103 104 105 |
# File 'lib/puppet/util/windows/access_control_list.rb', line 99 def inspect str = "" @aces.each do |ace| str << " #{ace.inspect}\n" end str end |