CHEF directory: No mapping between account names and security IDs was done -


when using 'directory' resource create directory on bootstrapped node using chef, error:

"chef::exceptions::win32api error: no mapping between account names , security ids done"

below sample recipe rb file

directory 'd:\test'     rights :read, 'everyone'     rights :write, 'domain\group'     rights :full_control, 'group_name_or_user_name'     rights :full_control, 'user_name', :applies_to_children => true     action :create end 

it great, if insight on this.

thanks in advance


Comments