Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 256
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use warnings;
2
use warnings;
3
use strict;  
3
use strict;  
4
 
4
 
5
# Description: Get packages installed via rpm (RedHat)
5
use version ; our $VERSION = 'v1.2.0';
6
 
6
 
7
our $VERSION = '1.2';
-
 
8
 
-
 
9
# Redhat software module for sysinfo client
7
# # Description: Get packages installed via rpm (RedHat)
10
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
11
# Date:   2016-04-08
9
# Date:   2016-04-08
-
 
10
#
12
# gets information on software on systems with rpm on them (Redhat)
11
# gets information on software on systems with rpm on them (Redhat)
-
 
12
#
-
 
13
# Revision History
-
 
14
#
-
 
15
#
13
 
16
 
14
# find our location and use it for searching for libraries
17
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
18
# or, if run interactively, in the parent of the modules
15
BEGIN {
19
BEGIN {
16
   use FindBin;
20
   use FindBin;
17
   use File::Spec;
21
   use File::Spec;
18
   use lib File::Spec->catdir($FindBin::Bin);
22
   # prepend the bin directory and its parent
19
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
20
   eval( 'use Data::Dumper;' );
24
   eval( 'use library;' );
-
 
25
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
21
}
26
}
22
 
27
 
-
 
28
#####
-
 
29
##### Change these to match your needs
-
 
30
#####
-
 
31
 
-
 
32
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
-
 
33
my $modulesList = {
-
 
34
        'Data::Dumper'     => undef,
-
 
35
   };
-
 
36
 
-
 
37
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
-
 
38
# the full path (from which or where)
-
 
39
my $commandsList = {
23
# check for valid OS. 
40
        'rpm' => undef,
-
 
41
   };
-
 
42
 
-
 
43
# list of operating systems this module can be used on.
-
 
44
my $osList = {
-
 
45
#         'mswin32' => undef,
-
 
46
#         'freebsd' => undef,
24
exit 1 unless &checkOS( { 'linux' => undef } );
47
         'linux'   => undef,
-
 
48
   };
-
 
49
 
-
 
50
# the category the return data should go into. See sysinfo for a list
-
 
51
my $CATEGORY = 'software';
25
 
52
 
-
 
53
#####
-
 
54
##### End of required
-
 
55
#####
-
 
56
 
-
 
57
# some variables needed for our system
-
 
58
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
-
 
59
my @out; # temporary location for each line of output
-
 
60
 
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
61
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
27
# script returns a 2
62
for my $module ( keys %$modulesList ) {
28
foreach my $command ( 'rpm' ) {
63
   eval ( "use $module;" );
29
   exit 2 unless &validCommandOnSystem( $command );
64
   push @out, "$errorPrepend Could not load $module" if $@;
30
}
65
}
31
 
66
 
-
 
67
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
-
 
68
    push @out, "$errorPrepend Invalid Operating System";
-
 
69
}
-
 
70
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
71
   push @out, "$errorPrepend Can not find some commands needed";
-
 
72
}
-
 
73
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
74
   #####
-
 
75
   ##### Your code starts here. Remember to push all output onto @out
-
 
76
   #####
-
 
77
   
-
 
78
   my @packageList = split( "\n", qx( rpm -qa --qf "%{NAME}\\t%{VERSION}\\t%{DISTRIBUTION}\\n" ) );
-
 
79
   chomp @packageList;
-
 
80
   for ( my $i = 0; $i < @packageList; $i++ ) {
-
 
81
      my ($package, $version, $distribution)  = split( "\t", $packageList[$i]);
-
 
82
      push @out, "$CATEGORY\t$package\tversion\t$version\n";
-
 
83
   }
-
 
84
 
-
 
85
   #####
-
 
86
   ##### Your code ends here.
-
 
87
   #####
-
 
88
}
32
 
89
 
-
 
90
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
91
print join( "\n", @out ) . "\n" unless caller;
-
 
92
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
33
my $CATEGORY = 'software';
93
my $return = join( "\n", @out );
34
 
94
 
35
my @packageList = split( "\n", qx( rpm -qa --qf "%{NAME}\\t%{VERSION}\\t%{DISTRIBUTION}\\n" ) );
-
 
36
chomp @packageList;
-
 
37
for ( my $i = 0; $i < @packageList; $i++ ) {
-
 
38
   my ($package, $version, $distribution)  = split( "\t", $packageList[$i]);
-
 
39
   print "$CATEGORY\t$package\tversion\t$version\n";
-
 
40
#   print "$CATEGORY\t$package\tdescription\t" . join(" ", @description) . "\n";
-
 
41
}
-