Blame | Last modification | View Log | RSS feed
#########################################################################################
# YOU MUST FILL OUT THESE VALUES
# You must manually fill out the owners name. This is used by process_sysinfo.pl to allow
# computers with the same name in two locations. The key to uniquely identify a machine is the
# client name (see $client_name below) and the computer name (taken from the hostname command)
#
# Also, if you want a custom package processing script, enter it as $CUSTOM_PACKAGE_FINDER
# the results of this script will be appended to the package list.
# this script must return, to stdout, one or more lines containing a tab delimited list
# of values. The values are, in order, package name, version, and an optional description
# see sysinf_custom.pl for an example (it includes sysinfo.pl)
#########################################################################################
$APPLICATION_ROOT = '/etc/sysinfo/custom_commands';
$client_name = ''; # Required, you must put in a client name
$hostname = ''; # you can put a custom value here, or it defaults to `hostname -f`
#$CUSTOM_PACKAGE_FINDER = "$APPLICATION_ROOT/sysinfo_custom";
# create a list of directories below, whose sizes will be reported back to the server
#@directoriesToWatch = ('');
###########
# e-mail the results instead of simply returning them to stdout
# if the first value is set non-zero, you must fill in the remainders
###########
$iMailResults = 0; # if 0 (false), ignore following variables
$mailTo = 'sysinfo@example.com';
$mailSubject = `hostname` . ' sysinfo ' . `date +"%F"`;
$mailCC = '';
$mailBCC = '';
$mailServer = 'mail.example.com';
$mailServerPort = 25;
$mailFrom = 'sysinfo@example.com';
$SENDMAIL = '/usr/sbin/sendmail -tU';
#########################################################################################
# END OF REQUIRED VALUES
#########################################################################################