Subversion Repositories camp_sysinfo_client_3

Rev

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

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