wok view ocsinventory-agent/stuff/Tazpkg.pm @ rev 3680

Fix: ocsinventory-agent, remove escape chars from tazpkg list output.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Jul 13 10:52:36 2009 +0200 (2009-07-13)
parents db6394fb176f
children 7e463c50f245
line source
1 package Ocsinventory::Agent::Backend::OS::Generic::Packaging::Tazpkg;
3 use strict;
4 use warnings;
6 sub check { can_run("tazpkg") }
8 sub run {
9 my $params = shift;
10 my $inventory = $params->{inventory};
12 # use tazpkg list\n'
13 foreach (`tazpkg list `){
14 next if (/List of/);
15 next if (/packages installed/);
17 if (/^(\S+)\[24G\s+(\S+)\[42G\s+(\S+)/) {
18 $inventory->addSoftwares({
19 'NAME' => $1,
20 'VERSION' => $2,
21 'COMMENTS' => $3
22 });
23 }
24 }
26 }
28 1;