diff --git a/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/License.pm b/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/License.pm index 8de02fe5d7..a8eb410d68 100644 --- a/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/License.pm +++ b/lib/FusionInventory/Agent/Task/Inventory/Input/MacOS/License.pm @@ -17,14 +17,9 @@ sub doInventory { my @found = getAdobeLicenses( command => 'sqlite3 -separator " <> " "/Library/Application Support/Adobe/Adobe PCD/cache/cache.db" "SELECT * FROM domain_data"'); -use Data::Dumper; -print Dumper(\@found); - - - foreach my $license (@found) { - $params{inventory}->addEntry(section => 'LICENSES', entry => $license); -} - + foreach my $license (@found) { + $params{inventory}->addEntry(section => 'LICENSEINFOS', entry => $license); + } } 1;