Subversion Repositories camp_sysinfo_client_3

Rev

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

Rev 87 Rev 251
Line 9... Line 9...
9
# Redhat software module for sysinfo client
9
# Redhat software module for sysinfo client
10
# Author: R. W. Rodolico
10
# Author: R. W. Rodolico
11
# Date:   2016-04-08
11
# Date:   2016-04-08
12
# gets information on software on systems with rpm on them (Redhat)
12
# gets information on software on systems with rpm on them (Redhat)
13
 
13
 
-
 
14
# find our location and use it for searching for libraries
14
BEGIN {
15
BEGIN {
15
   push @INC, shift;
16
   use FindBin;
-
 
17
   use File::Spec;
-
 
18
   use lib File::Spec->catdir($FindBin::Bin);
-
 
19
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
-
 
20
   eval( 'use Data::Dumper;' );
16
}
21
}
17
 
22
 
18
use library;
23
# check for valid OS. 
-
 
24
exit 1 unless &checkOS( { 'linux' => undef } );
19
 
25
 
-
 
26
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
-
 
27
# script returns a 2
-
 
28
foreach my $command ( 'rpm' ) {
20
my $rpm = &validCommandOnSystem( 'rpm' );
29
   exit 2 unless &validCommandOnSystem( $command );
-
 
30
}
21
 
31
 
22
exit 1 unless $rpm;
-
 
23
 
32
 
24
my $CATEGORY = 'software';
33
my $CATEGORY = 'software';
25
 
34
 
26
my @packageList = split( "\n", qx( $rpm -qa --qf "%{NAME}\\t%{VERSION}\\t%{DISTRIBUTION}\\n" ) );
35
my @packageList = split( "\n", qx( rpm -qa --qf "%{NAME}\\t%{VERSION}\\t%{DISTRIBUTION}\\n" ) );
27
chomp @packageList;
36
chomp @packageList;
28
for ( my $i = 0; $i < @packageList; $i++ ) {
37
for ( my $i = 0; $i < @packageList; $i++ ) {
29
   my ($package, $version, $distribution)  = split( "\t", $packageList[$i]);
38
   my ($package, $version, $distribution)  = split( "\t", $packageList[$i]);
30
   print "$CATEGORY\t$package\tversion\t$version\n";
39
   print "$CATEGORY\t$package\tversion\t$version\n";
31
#   print "$CATEGORY\t$package\tdescription\t" . join(" ", @description) . "\n";
40
#   print "$CATEGORY\t$package\tdescription\t" . join(" ", @description) . "\n";