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