Skip to content
Snippets Groups Projects

Create the uploads_storage_path directory

Merged John Jarvis requested to merge jarv/create-uploads-directory into master
All threads resolved!
2 files
+ 16
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -86,7 +86,6 @@ end
gitlab_ci_builds_dir,
gitlab_rails_shared_cache_dir,
gitlab_rails_shared_tmp_dir,
gitlab_rails_uploads_storage_path
].compact.each do |dir_name|
storage_directory dir_name do
owner gitlab_user
@@ -94,6 +93,12 @@ end
end
end
storage_directory gitlab_rails_uploads_storage_path do
owner gitlab_user
mode '0700'
only_if { gitlab_rails_uploads_storage_path != GitlabRails.public_path }
end
storage_directory node['gitlab']['gitlab-rails']['pages_path'] do
owner gitlab_user
group account_helper.web_server_group
Loading