Factor out common options

This commit is contained in:
Shay Bergmann
2021-07-26 03:43:09 +00:00
parent 3c621ec386
commit 4f95774ca3
3 changed files with 15 additions and 12 deletions

11
src/lib/Hydra/Config.pm Normal file
View File

@ -0,0 +1,11 @@
package Hydra::Config;
use strict;
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(%configGeneralOpts);
my %configGeneralOpts = (-UseApacheInclude => 1, -IncludeAgain => 1);
1;