Apply requested changes to Config.pm
[?]
Jul 26, 2021, 5:11 PM
7YTZDNBOAUXGHOGGYJBY2WP6MTPAZENJORRK7GUWPMRPCW6WXOVQCDependencies
- [2]
5DZAUSUVFactor out common options - [3]
J7GLZHA3Make hydra-server honor config file includes - [4]
NILMMFMYRespect X-Request-Base header coming from a frontend proxy. - [5]
JAH3UPWASupport revision control systems via plugins - [6]
LKDWWJLMDoh - [7]
KKHVM4KAMove GC roots to /nix/var/nix/gcroots/hydra - [8]
J5UVLXOK* Start of a basic Catalyst web interface. - [9]
UCCNGBKLComment around dupe to avoid drift - [10]
TJK27WSBOpen the DB using Hydra::Model::DB->new - [11]
NNJZNDVUPlugin::Authentication config: modernize - [12]
SGLGUD7REnable apache style includes in the config file - [13]
U2ZK6LZ7Fix some warnings - [*]
2GK5DOU7* Downloading closures.
Change contents
- edit in src/lib/Hydra/Config.pm at line 2
use strict;use Exporter;our @ISA = qw(Exporter);our @EXPORT = qw(%configGeneralOpts); - replacement in src/lib/Hydra/Config.pm at line 3
my %configGeneralOpts = (-UseApacheInclude => 1, -IncludeAgain => 1);our %configGeneralOpts = (-UseApacheInclude => 1, -IncludeAgain => 1, -IncludeRelative => 1); - edit in src/lib/Hydra/Helper/Nix.pm at line 45
my %opts = (%Hydra::Config::configGeneralOpts, -ConfigFile => $conf); - replacement in src/lib/Hydra/Helper/Nix.pm at line 52
my %h = new Config::General( -ConfigFile => $conf, %configGeneralOpts )->getall;my %h = new Config::General(%opts)->getall; - edit in src/lib/Hydra.pm at line 9
use Hydra::Config; - replacement in src/lib/Hydra.pm at line 53
'General' => \%configGeneralOpts'General' => \%Hydra::Config::configGeneralOpts