Merge pull request #71428 from talyz/gitlab-already-initialized-constant
gitlab: Get rid of most 'already initialized constant'-warnings
This commit is contained in:
commit
1125fb02cc
@ -666,7 +666,6 @@ in {
|
|||||||
"d ${gitlabConfig.production.shared.path}/artifacts 0750 ${cfg.user} ${cfg.group} -"
|
"d ${gitlabConfig.production.shared.path}/artifacts 0750 ${cfg.user} ${cfg.group} -"
|
||||||
"d ${gitlabConfig.production.shared.path}/lfs-objects 0750 ${cfg.user} ${cfg.group} -"
|
"d ${gitlabConfig.production.shared.path}/lfs-objects 0750 ${cfg.user} ${cfg.group} -"
|
||||||
"d ${gitlabConfig.production.shared.path}/pages 0750 ${cfg.user} ${cfg.group} -"
|
"d ${gitlabConfig.production.shared.path}/pages 0750 ${cfg.user} ${cfg.group} -"
|
||||||
"L+ ${cfg.statePath}/lib - - - - ${cfg.packages.gitlab}/share/gitlab/lib"
|
|
||||||
"L+ /run/gitlab/config - - - - ${cfg.statePath}/config"
|
"L+ /run/gitlab/config - - - - ${cfg.statePath}/config"
|
||||||
"L+ /run/gitlab/log - - - - ${cfg.statePath}/log"
|
"L+ /run/gitlab/log - - - - ${cfg.statePath}/log"
|
||||||
"L+ /run/gitlab/tmp - - - - ${cfg.statePath}/tmp"
|
"L+ /run/gitlab/tmp - - - - ${cfg.statePath}/tmp"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
|
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
|
||||||
, ruby, tzdata, git, nettools, nixosTests, nodejs
|
, ruby, tzdata, git, nettools, nixosTests, nodejs
|
||||||
, gitlabEnterprise ? false, callPackage, yarn
|
, gitlabEnterprise ? false, callPackage, yarn
|
||||||
, yarn2nix-moretea
|
, yarn2nix-moretea, replace
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -118,6 +118,13 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
sed -i '/ask_to_continue/d' lib/tasks/gitlab/two_factor.rake
|
sed -i '/ask_to_continue/d' lib/tasks/gitlab/two_factor.rake
|
||||||
sed -ri -e '/log_level/a config.logger = Logger.new(STDERR)' config/environments/production.rb
|
sed -ri -e '/log_level/a config.logger = Logger.new(STDERR)' config/environments/production.rb
|
||||||
|
|
||||||
|
# Always require lib-files and application.rb through their store
|
||||||
|
# path, not their relative state directory path. This gets rid of
|
||||||
|
# warnings and means we don't have to link back to lib from the
|
||||||
|
# state directory.
|
||||||
|
${replace}/bin/replace-literal -f -r -e '../lib' "$out/share/gitlab/lib" config
|
||||||
|
${replace}/bin/replace-literal -f -r -e "require_relative 'application'" "require_relative '$out/share/gitlab/config/application'" config
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user