Subversion Repositories camp_sysinfo_client_3

Rev

Rev 69 | Rev 256 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 69 Rev 251
Line 10... Line 10...
10
# Author: R. W. Rodolico
10
# Author: R. W. Rodolico
11
# Date:   2016-04-08
11
# Date:   2016-04-08
12
 
12
 
13
# gets information on software on systems with dpkg on them (Debian)
13
# gets information on software on systems with dpkg on them (Debian)
14
 
14
 
-
 
15
# find our location and use it for searching for libraries
15
BEGIN {
16
BEGIN {
16
   push @INC, shift;
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;' );
17
}
22
}
18
 
23
 
19
use library;
24
# check for valid OS. 
-
 
25
exit 1 unless &checkOS( { 'freebsd' => undef } );
20
 
26
 
-
 
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
21
exit 1 unless &getOperatingSystem() =~ m/bsd/i;
29
foreach my $command ( 'pkg' ) {
22
 
-
 
23
my $pkg = &validCommandOnSystem( 'pkg' );
30
   exit 2 unless &validCommandOnSystem( $command );
24
 
31
}
25
exit 1 unless $pkg;
-
 
26
 
32
 
27
my $CATEGORY = 'software';
33
my $CATEGORY = 'software';
28
 
34
 
29
my @packageList  = split( "\n", qx($pkg info));
35
my @packageList  = split( "\n", qx( pkg info ));
30
chomp @packageList;
36
chomp @packageList;
31
for ( my $i = 0; $i < @packageList; $i++ ) {
37
for ( my $i = 0; $i < @packageList; $i++ ) {
32
   $packageList[$i] =~ m/^(.+)-([^ ]+)\s+(.*)/;
38
   $packageList[$i] =~ m/^(.+)-([^ ]+)\s+(.*)/;
33
   print "$CATEGORY\t$1\tversion\t$2\n";
39
   print "$CATEGORY\t$1\tversion\t$2\n";
34
   print "$CATEGORY\t$1\tdescription\t$3\n";
40
   print "$CATEGORY\t$1\tdescription\t$3\n";