X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ocsinventory-agent-cn.git;a=blobdiff_plain;f=Deb.pm;fp=Deb.pm;h=0000000000000000000000000000000000000000;hp=b64552ac61cfe61fbaf3e5599315898adf59e239;hb=fc72421b816581b504987adf8d9ba47dc4dc1f0c;hpb=86635ba11f25f1580bb058a044eaf10b7d8a4f39 diff --git a/Deb.pm b/Deb.pm deleted file mode 100644 index b64552a..0000000 --- a/Deb.pm +++ /dev/null @@ -1,26 +0,0 @@ -package Ocsinventory::Agent::Backend::OS::Generic::Packaging::Deb; - -use strict; -use warnings; - -sub check { can_run("dpkg") } - -sub run { - my $params = shift; - my $common = $params->{common}; - -# use dpkg-query --show --showformat='${Package}|||${Version}\n' - foreach(`dpkg-query --show --showformat='\${Status}---\${Package}---\${Version}---\${Installed-Size}---\${Description}\n' | grep ^'install ok installed'`) { - if (/^(\S+)---(\S+)---(\S+)---(\S+)---(.*)/) { - $common->addSoftware ({ - 'NAME' => $2, - 'VERSION' => $3, - 'FILESIZE' => $4, - 'COMMENTS' => $5, - 'FROM' => 'deb' - }); - } - } -} - -1;