mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 07:58:16 -05:00
13 lines
351 B
Ruby
13 lines
351 B
Ruby
actions :start
|
|
|
|
attribute :revision, :kind_of => String, :default => "master"
|
|
attribute :repository, :kind_of => String
|
|
attribute :user, :kind_of => String, :default => "www-data"
|
|
attribute :group, :kind_of => String, :default => "www-data"
|
|
attribute :environment, :kind_of => Hash, :default => {}
|
|
|
|
def initialize(*args)
|
|
super
|
|
@action = :start
|
|
end
|
|
|