2016-06-22 17:04:51 -04:00
|
|
|
def storage_name_valid?(name)
|
|
|
|
!!(name =~ /\A[a-zA-Z0-9\-_]+\z/)
|
|
|
|
end
|
|
|
|
|
2016-07-11 21:29:13 -04:00
|
|
|
def storage_validation_error(message)
|
2016-06-22 17:04:51 -04:00
|
|
|
raise "#{message}. Please fix this in your gitlab.yml before starting GitLab."
|
|
|
|
end
|
|
|
|
|
2017-03-08 11:15:05 -05:00
|
|
|
def validate_storages_config
|
2016-07-18 17:28:26 -04:00
|
|
|
storage_validation_error('No repository storage path defined') if Gitlab.config.repositories.storages.empty?
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-02-28 16:08:40 -05:00
|
|
|
Gitlab.config.repositories.storages.each do |name, repository_storage|
|
2016-07-18 17:28:26 -04:00
|
|
|
storage_validation_error("\"#{name}\" is not a valid storage name") unless storage_name_valid?(name)
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-08-13 08:52:44 -04:00
|
|
|
%w(failure_count_threshold failure_reset_time storage_timeout).each do |setting|
|
2017-05-17 12:17:15 -04:00
|
|
|
# Falling back to the defaults is fine!
|
|
|
|
next if repository_storage[setting].nil?
|
|
|
|
|
|
|
|
unless repository_storage[setting].to_f > 0
|
2017-08-13 08:52:44 -04:00
|
|
|
storage_validation_error("`#{setting}` for storage `#{name}` needs to be greater than 0")
|
2017-05-17 12:17:15 -04:00
|
|
|
end
|
|
|
|
end
|
2017-03-08 11:15:05 -05:00
|
|
|
end
|
|
|
|
end
|
2017-02-28 16:08:40 -05:00
|
|
|
|
2017-03-08 11:15:05 -05:00
|
|
|
validate_storages_config
|