49 lines
711 B
Ruby
49 lines
711 B
Ruby
directory '/opt/theta42' do
|
|
owner 'root'
|
|
group 'root'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/opt/theta42/bin' do
|
|
owner 'root'
|
|
group 'root'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/home/gitea' do
|
|
owner 'gitea'
|
|
group 'gitea'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/opt/theta42/gitea' do
|
|
owner 'gitea'
|
|
group 'gitea'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/opt/theta42/gitea/conf' do
|
|
owner 'gitea'
|
|
group 'gitea'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/opt/theta42/gitea/data' do
|
|
owner 'gitea'
|
|
group 'gitea'
|
|
mode '0755'
|
|
action :create
|
|
end
|
|
|
|
directory '/opt/theta42/gitea/custom' do
|
|
owner 'gitea'
|
|
group 'gitea'
|
|
mode '0755'
|
|
action :create
|
|
end
|