-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-perl-check-config
executable file
·57 lines (40 loc) · 1.06 KB
/
x-perl-check-config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env perl
#
# Check configuration files with Config::Any
#
use strict;
use warnings;
use Config::Any;
use Data::Dump qw( pp );
use Getopt::Long;
my $opt_json;
GetOptions('json' => \$opt_json) || usage();
if ($opt_json) {
eval { require JSON };
fatal("option --json requires the JSON module from CPAN") if $@;
}
usage('Missing required configuration file to parse') unless @ARGV;
my $cfg = Config::Any->load_files({files => \@ARGV, use_ext => 1});
for my $c (@$cfg) {
while (my ($filename, $config) = each %$c) {
print ">>> Got configuration from file '$filename':\n";
if ($opt_json) { print JSON::to_json($config) }
else { print pp($config) }
print "\n";
}
}
#############
sub fatal {
my $mesg = join('', @_);
print "FATAL: $mesg\n" if $mesg;
exit(1);
}
sub usage {
print <<" EOU";
Usage: x-perl-check-config [--json] config_file*
Parses 1 or more configuration files (JSON, .ini, YAML supported)
and dumps the internal perl structure or as JSON if the '--json'
option is used.
EOU
fatal(@_);
}