chef/cookbooks/ark/libraries/windows_owner.rb
2016-02-19 18:09:49 +01:00

14 lines
229 B
Ruby

module Ark
class WindowsOwner
def initialize(resource)
@resource = resource
end
attr_reader :resource
def command
"icacls \"#{resource.path}\\*\" /setowner \"#{resource.owner}\""
end
end
end