diff options
author | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 14:17:48 +0000 |
---|---|---|
committer | Peter Bray <illumino@users.sourceforge.net> | 2005-07-25 14:17:48 +0000 |
commit | 004ce6f5e23804c55d62ebbff73e57f02360763e (patch) | |
tree | af28fa336e01ff4bf6eb68435bb358d2ab7e35f3 /NPTest.pm | |
parent | cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1 (diff) | |
download | monitoring-plugins-004ce6f5e23804c55d62ebbff73e57f02360763e.tar.gz |
Change the environment variable NPTESTCACHE to NPTEST_CACHE for consistancy
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1208 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'NPTest.pm')
-rw-r--r-- | NPTest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -202,8 +202,8 @@ my( %CACHE ) = (); # I'm not really sure wether to house a site-specific cache inside # or outside of the extracted source / build tree - lets default to outside -my( $CACHEFILENAME ) = ( exists( $ENV{'NPTESTCACHE'} ) && $ENV{'NPTESTCACHE'} ) - ? $ENV{'NPTESTCACHE'} : "/var/tmp/NPTest.cache"; # "../Cache.pdd"; +my( $CACHEFILENAME ) = ( exists( $ENV{'NPTEST_CACHE'} ) && $ENV{'NPTEST_CACHE'} ) + ? $ENV{'NPTEST_CACHE'} : "/var/tmp/NPTest.cache"; # "../Cache.pdd"; # # Testing Functions |