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

14 lines
228 B
Ruby

module Ark
class GeneralOwner
def initialize(resource)
@resource = resource
end
attr_reader :resource
def command
"chown -R #{resource.owner}:#{resource.group} #{resource.path}"
end
end
end