Files

Class/Module Index [+]

Quicksearch

Chef::FileAccessControl::Windows

Constants

ACE
ACL
SID
Security

Public Instance Methods

describe_changes() click to toggle source
# File lib/chef/file_access_control/windows.rb, line 48
def describe_changes
  # FIXME: describe what these are changing from and to
  changes = []
  changes << "change dacl" if should_update_dacl?
  changes << "change owner" if should_update_owner?
  changes << "change group" if should_update_group?
  changes
end
requires_changes?() click to toggle source
# File lib/chef/file_access_control/windows.rb, line 44
def requires_changes?
  should_update_dacl? || should_update_owner? || should_update_group?
end
set_all() click to toggle source
# File lib/chef/file_access_control/windows.rb, line 38
def set_all
  set_owner
  set_group
  set_dacl
end
set_all!() click to toggle source
# File lib/chef/file_access_control/windows.rb, line 32
def set_all!
  set_owner!
  set_group!
  set_dacl
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.