json object tweaking done

This commit is contained in:
d4t4king 2016-11-21 14:24:08 -08:00
parent 37b9f8ed58
commit 126fbaf9e5

View File

@ -160,6 +160,13 @@ if ($debug) {
if ($json) {
require JSON;
# tidy up some of the "object" variables
my @sduf = @{$lynis_report_data{'systemd_unit_file[]'}};
my @sduf_new;
foreach my $uf ( @sduf ) {
my ($name,$status) = split(/\|/, $uf);
push @sduf_new, { 'name' => $name, 'state' => $status };
}
$lynis_report_data{'systemd_unit_file[]'} = \@sduf_new;
my @ipa = @{$lynis_report_data{'installed_packages_array'}};
my @ipa_new;
foreach my $pkg ( @ipa ) {