Subversion Repositories camp_sysinfo_client_3

Rev

Rev 233 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 rodolico 1
#!/usr/bin/env perl
2
use warnings;
26 rodolico 3
use strict;  
2 rodolico 4
 
233 rodolico 5
use utf8;                                # Source code encoded using UTF-8
6
 
37 rodolico 7
# Description: Get software installed by dpkg or apt(itutde) (Debian)
20 rodolico 8
 
37 rodolico 9
our $VERSION = '1.2';
10
 
20 rodolico 11
# Debian software module for sysinfo client
12
# Author: R. W. Rodolico
13
# Date:   2016-04-08
14
 
2 rodolico 15
# gets information on software on systems with dpkg on them (Debian)
16
 
251 rodolico 17
# find our location and use it for searching for libraries
2 rodolico 18
BEGIN {
251 rodolico 19
   use FindBin;
20
   use File::Spec;
21
   use lib File::Spec->catdir($FindBin::Bin);
22
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   eval( 'use Data::Dumper;' );
2 rodolico 24
}
25
 
251 rodolico 26
# check for valid OS. 
27
exit 1 unless &checkOS( { 'linux' => undef } );
2 rodolico 28
 
251 rodolico 29
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
30
# script returns a 2
31
foreach my $command ( 'dpkg', 'grep' ) {
32
   exit 2 unless &validCommandOnSystem( $command );
33
}
2 rodolico 34
 
35
my $CATEGORY = 'software';
36
 
251 rodolico 37
my @packageList  = split( "\n", qx(dpkg -l | grep ^i));
2 rodolico 38
chomp @packageList;
233 rodolico 39
 
28 rodolico 40
for ( my $i = 0; $i < @packageList; $i++ ) {
233 rodolico 41
   utf8::encode( $packageList[$i] );
2 rodolico 42
   my ($status,$package, $version, @description) = split ' ', $packageList[$i];
43
   print "$CATEGORY\t$package\tversion\t$version\n";
44
   print "$CATEGORY\t$package\tdescription\t" . join(" ", @description) . "\n";
45
}