Method: Chef::FileAccessControl::Windows#describe_changes

Defined in:
lib/chef/file_access_control/windows.rb

#describe_changesObject



67
68
69
70
71
72
73
74
# File 'lib/chef/file_access_control/windows.rb', line 67

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