253 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
|
|
3 |
use strict;
|
|
|
4 |
|
256 |
rodolico |
5 |
use version ; our $VERSION = 'v1.0.0';
|
253 |
rodolico |
6 |
|
256 |
rodolico |
7 |
# Template for modules to be used in sysinfo
|
|
|
8 |
# Author: R. W. Rodolico
|
|
|
9 |
# Date: 2025-04-02
|
|
|
10 |
#
|
253 |
rodolico |
11 |
# This is a simple script to gather some basic Windows system information
|
|
|
12 |
# all we get is the operating system name (small, code name) and the
|
|
|
13 |
# display name (ie, Windows Server 2019
|
254 |
rodolico |
14 |
# uses Win32 (cpan install Win32)
|
256 |
rodolico |
15 |
#
|
|
|
16 |
# Revision History
|
|
|
17 |
#
|
|
|
18 |
#
|
253 |
rodolico |
19 |
|
256 |
rodolico |
20 |
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
|
|
|
21 |
# or, if run interactively, in the parent of the modules
|
253 |
rodolico |
22 |
BEGIN {
|
|
|
23 |
use FindBin;
|
|
|
24 |
use File::Spec;
|
256 |
rodolico |
25 |
# prepend the bin directory and its parent
|
|
|
26 |
use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
|
253 |
rodolico |
27 |
eval( 'use library;' );
|
256 |
rodolico |
28 |
die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
|
253 |
rodolico |
29 |
}
|
|
|
30 |
|
256 |
rodolico |
31 |
#####
|
|
|
32 |
##### Change these to match your needs
|
|
|
33 |
#####
|
253 |
rodolico |
34 |
|
256 |
rodolico |
35 |
# 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
|
|
|
36 |
my $modulesList = {
|
|
|
37 |
'Data::Dumper' => undef,
|
|
|
38 |
'win32' => undef,
|
|
|
39 |
};
|
|
|
40 |
|
|
|
41 |
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
|
|
|
42 |
# the full path (from which or where)
|
|
|
43 |
my $commandsList = {
|
|
|
44 |
};
|
|
|
45 |
|
|
|
46 |
# list of operating systems this module can be used on.
|
|
|
47 |
my $osList = {
|
|
|
48 |
'mswin32' => undef,
|
|
|
49 |
# 'freebsd' => undef,
|
|
|
50 |
# 'linux' => undef,
|
|
|
51 |
};
|
|
|
52 |
|
|
|
53 |
# the category the return data should go into. See sysinfo for a list
|
253 |
rodolico |
54 |
my $CATEGORY = 'operatingsystem';
|
|
|
55 |
|
256 |
rodolico |
56 |
#####
|
|
|
57 |
##### End of required
|
|
|
58 |
#####
|
253 |
rodolico |
59 |
|
256 |
rodolico |
60 |
# some variables needed for our system
|
|
|
61 |
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
|
|
|
62 |
my @out; # temporary location for each line of output
|
253 |
rodolico |
63 |
|
256 |
rodolico |
64 |
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
|
|
|
65 |
for my $module ( keys %$modulesList ) {
|
|
|
66 |
eval ( "use $module;" );
|
|
|
67 |
push @out, "$errorPrepend Could not load $module" if $@;
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
|
|
|
71 |
push @out, "$errorPrepend Invalid Operating System";
|
|
|
72 |
}
|
|
|
73 |
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
|
|
|
74 |
push @out, "$errorPrepend Can not find some commands needed";
|
|
|
75 |
}
|
|
|
76 |
if ( !@out ) { # we made it, we have everything, so do the processing
|
|
|
77 |
#####
|
|
|
78 |
##### Your code starts here. Remember to push all output onto @out
|
|
|
79 |
#####
|
|
|
80 |
|
|
|
81 |
# in scalar, will simply return the short name. use 'scalar' to force that.
|
|
|
82 |
push @out, sprintf( "%s\t%s\t%s\n", $CATEGORY, 'distribution', scalar Win32::GetOSName() );
|
|
|
83 |
push @out, sprintf( "%s\t%s\t%s\n", $CATEGORY, 'description', Win32::GetOSDisplayName() );
|
|
|
84 |
|
|
|
85 |
#####
|
|
|
86 |
##### Your code ends here.
|
|
|
87 |
#####
|
|
|
88 |
}
|
|
|
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
|
|
|
93 |
my $return = join( "\n", @out );
|
|
|
94 |
|