Subversion Repositories camp_sysinfo_client_3

Rev

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

Rev 236 Rev 252
Line 15... Line 15...
15
# 20171124 RWR
15
# 20171124 RWR
16
# Modified for FreeBSD
16
# Modified for FreeBSD
17
#
17
#
18
# 20240519 RWR v1.2
18
# 20240519 RWR v1.2
19
# Assume sysinfo-client in parent directory, so just run it and have it tell us it's version
19
# Assume sysinfo-client in parent directory, so just run it and have it tell us it's version
-
 
20
#
-
 
21
# 20250330 RWR v1.2.1
-
 
22
# For Windows compatility, added 'perl' before calling perl script
20
 
23
 
21
# assume sysinfo-client is in our parent directory
24
# assume sysinfo-client is in our parent directory
22
my $sysinfo = dirname( abs_path( __FILE__ ) ) . '/../';
25
my $sysinfo = dirname( abs_path( __FILE__ ) ) . '/../';
23
$sysinfo =  abs_path( $sysinfo ) . '/sysinfo-client';
26
$sysinfo =  abs_path( $sysinfo ) . '/sysinfo-client';
24
# exit failure unless we can run it. Should never happen
27
# exit failure unless we can run it. Should never happen
25
exit 1 unless ( -x $sysinfo );
28
exit 1 unless ( -f $sysinfo );
26
# run it with the --version flag
29
# run it with the --version flag
27
my $output = `$sysinfo --version`;
30
my $output = `perl $sysinfo --version`;
28
chomp $output;
31
chomp $output;
29
 
32
 
30
my $CATEGORY = 'software';
33
my $CATEGORY = 'software';
31
 
34
 
32
my ($install, $version ) = split ' ', $output;
35
my ($install, $version ) = split ' ', $output;
33
print "$CATEGORY\t$install\tversion\t$version\n" if $install eq 'sysinfo-client';
36
print "$CATEGORY\t$install\tversion\t$version\n" if $install eq 'sysinfo-client';
34
 
37
 
35
exit 0;
-
 
36
 
38
exit 0;
-
 
39