Subversion Repositories camp_sysinfo_client_3

Rev

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

Rev 154 Rev 165
Line 8... Line 8...
8
 
8
 
9
exit 1;
9
exit 1;
10
 
10
 
11
# Put some comments here on who wrote it and what it does
11
# Put some comments here on who wrote it and what it does
12
 
12
 
-
 
13
# find our location and use it for searching for libraries
13
BEGIN {
14
BEGIN {
14
   push @INC, shift;
15
   use FindBin;
-
 
16
   use File::Spec;
-
 
17
   use lib File::Spec->catdir($FindBin::Bin);
-
 
18
   eval( 'use library;' );
-
 
19
   eval( 'use Data::Dumper;' );
15
}
20
}
16
 
21
 
17
use library;
-
 
18
 
-
 
19
# category we will use for all values found
22
# category we will use for all values found
20
# see sysinfo for a list of valid categories
23
# see sysinfo for a list of valid categories
21
my $CATEGORY = 'system';
24
my $CATEGORY = 'system';
22
 
25
 
23
# run the commands necessary to do whatever you want to do
26
# run the commands necessary to do whatever you want to do