overleaf/chef/cookbooks/sharelatex/resources/app.rb

14 lines
351 B
Ruby
Raw Normal View History

actions :start
attribute :revision, :kind_of => String, :default => "master"
attribute :repository, :kind_of => String
attribute :user, :kind_of => String, :default => "www-data"
2014-03-31 11:41:13 -04:00
attribute :group, :kind_of => String, :default => "www-data"
attribute :environment, :kind_of => Hash, :default => {}
def initialize(*args)
super
@action = :start
end