41 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
256 |
rodolico |
3 |
use strict;
|
41 |
rodolico |
4 |
|
256 |
rodolico |
5 |
use version ; our $VERSION = 'v1.2.0';
|
41 |
rodolico |
6 |
|
256 |
rodolico |
7 |
# Template for modules to be used in sysinfo
|
41 |
rodolico |
8 |
# Author: R. W. Rodolico
|
|
|
9 |
# Date: 2016-04-08
|
256 |
rodolico |
10 |
#
|
41 |
rodolico |
11 |
# Grabs the version of the installed sysinfo-client
|
57 |
rodolico |
12 |
#
|
256 |
rodolico |
13 |
# Revision History
|
|
|
14 |
#
|
57 |
rodolico |
15 |
# 20171124 RWR
|
|
|
16 |
# Modified for FreeBSD
|
236 |
rodolico |
17 |
#
|
|
|
18 |
# 20240519 RWR v1.2
|
|
|
19 |
# Assume sysinfo-client in parent directory, so just run it and have it tell us it's version
|
252 |
rodolico |
20 |
#
|
|
|
21 |
# 20250330 RWR v1.2.1
|
|
|
22 |
# For Windows compatility, added 'perl' before calling perl script
|
256 |
rodolico |
23 |
#
|
41 |
rodolico |
24 |
|
256 |
rodolico |
25 |
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
|
|
|
26 |
# or, if run interactively, in the parent of the modules
|
|
|
27 |
BEGIN {
|
|
|
28 |
use FindBin;
|
|
|
29 |
use File::Spec;
|
|
|
30 |
# prepend the bin directory and its parent
|
|
|
31 |
use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
|
|
|
32 |
eval( 'use library;' );
|
|
|
33 |
die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
|
|
|
34 |
}
|
41 |
rodolico |
35 |
|
256 |
rodolico |
36 |
#####
|
|
|
37 |
##### Change these to match your needs
|
|
|
38 |
#####
|
|
|
39 |
|
|
|
40 |
# 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
|
|
|
41 |
my $modulesList = {
|
|
|
42 |
'Data::Dumper' => undef,
|
|
|
43 |
"Cwd 'abs_path'" => undef,
|
|
|
44 |
'File::Basename' => undef,
|
|
|
45 |
};
|
|
|
46 |
|
|
|
47 |
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
|
|
|
48 |
# the full path (from which or where)
|
|
|
49 |
my $commandsList = {
|
|
|
50 |
'dpkg' => undef,
|
|
|
51 |
'grep' => undef,
|
|
|
52 |
};
|
|
|
53 |
|
|
|
54 |
# list of operating systems this module can be used on.
|
|
|
55 |
my $osList = {
|
|
|
56 |
# 'mswin32' => undef,
|
|
|
57 |
# 'freebsd' => undef,
|
|
|
58 |
'linux' => undef,
|
|
|
59 |
};
|
|
|
60 |
|
|
|
61 |
# the category the return data should go into. See sysinfo for a list
|
41 |
rodolico |
62 |
my $CATEGORY = 'software';
|
|
|
63 |
|
256 |
rodolico |
64 |
#####
|
|
|
65 |
##### End of required
|
|
|
66 |
#####
|
41 |
rodolico |
67 |
|
256 |
rodolico |
68 |
# some variables needed for our system
|
|
|
69 |
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
|
|
|
70 |
my @out; # temporary location for each line of output
|
|
|
71 |
|
|
|
72 |
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
|
|
|
73 |
for my $module ( keys %$modulesList ) {
|
|
|
74 |
eval ( "use $module;" );
|
|
|
75 |
push @out, "$errorPrepend Could not load $module" if $@;
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
|
|
|
79 |
push @out, "$errorPrepend Invalid Operating System";
|
|
|
80 |
}
|
|
|
81 |
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
|
|
|
82 |
push @out, "$errorPrepend Can not find some commands needed";
|
|
|
83 |
}
|
|
|
84 |
if ( !@out ) { # we made it, we have everything, so do the processing
|
|
|
85 |
#####
|
|
|
86 |
##### Your code starts here. Remember to push all output onto @out
|
|
|
87 |
#####
|
|
|
88 |
|
|
|
89 |
# assume sysinfo-client is in our parent directory
|
|
|
90 |
my $sysinfo = dirname( abs_path( __FILE__ ) ) . '/../';
|
|
|
91 |
$sysinfo = abs_path( $sysinfo ) . '/sysinfo-client';
|
|
|
92 |
# exit failure unless we can run it. Should never happen
|
|
|
93 |
exit 1 unless ( -f $sysinfo );
|
|
|
94 |
# run it with the --version flag
|
|
|
95 |
my $output = `perl $sysinfo --version`;
|
|
|
96 |
chomp $output;
|
|
|
97 |
|
|
|
98 |
my ($install, $version ) = split ' ', $output;
|
|
|
99 |
push @out, "$CATEGORY\t$install\tversion\t$version" if $install eq 'sysinfo-client';
|
|
|
100 |
|
|
|
101 |
#####
|
|
|
102 |
##### Your code ends here.
|
|
|
103 |
#####
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
# If we are testing from the command line (caller is undef), print the results for debugging
|
|
|
107 |
print join( "\n", @out ) . "\n" unless caller;
|
|
|
108 |
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
|
|
|
109 |
my $return = join( "\n", @out );
|
|
|
110 |
|