abc/ops/cookbooks/vendor/ark/libraries/general_owner.rb
2019-07-01 10:15:24 -04: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