diff options
author | awiddersheim <awiddersheim@hotmail.com> | 2013-10-22 10:33:56 -0400 |
---|---|---|
committer | awiddersheim <awiddersheim@hotmail.com> | 2013-10-22 10:33:56 -0400 |
commit | 0a3252d88d148a8cb21774cd3ae6a1cb1fbb004c (patch) | |
tree | 756f8d4b09eb6ee3c2ef75301a7027e9a42509dc /plugins-scripts/check_sensors.sh | |
parent | f6576c6db4eeb655f16a71286757e4a93792887d (diff) | |
download | monitoring-plugins-0a3252d88d148a8cb21774cd3ae6a1cb1fbb004c.tar.gz |
Fix trusted path
When configuring the plugins you have the option to specify a trusted path with --with-trusted-path. This option seems to have been deprecated at some point for unknown reasons and had typically had no affect. This commit makes this option work again for those who have a desire to use it. There should be no affect on those who have not chosen to specify a trusted path.
Diffstat (limited to 'plugins-scripts/check_sensors.sh')
-rwxr-xr-x | plugins-scripts/check_sensors.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins-scripts/check_sensors.sh b/plugins-scripts/check_sensors.sh index 874e1049..53db9b49 100755 --- a/plugins-scripts/check_sensors.sh +++ b/plugins-scripts/check_sensors.sh @@ -1,14 +1,13 @@ #!/bin/sh -PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin - PROGNAME=`basename $0` PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'` REVISION="@NP_VERSION@" +TRUSTED_PATH="@trusted_path@" +PATH=${TRUSTED_PATH:-"/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"} . $PROGPATH/utils.sh - print_usage() { echo "Usage: $PROGNAME" [--ignore-fault] } |