aboutsummaryrefslogtreecommitdiffstats
path: root/config/nut
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2015-04-28 09:17:53 -0300
committerRenato Botelho <garga@FreeBSD.org>2015-04-28 09:17:53 -0300
commit3546bfbf96e59a7b1bc52b9265c32af02285d506 (patch)
treea3c7009915c6ab6ecf81a0dac1551ff513c08f6a /config/nut
parent173f48bf08482c9b6c919f7275e6f0cc2b402944 (diff)
downloadpfsense-packages-3546bfbf96e59a7b1bc52b9265c32af02285d506.tar.gz
pfsense-packages-3546bfbf96e59a7b1bc52b9265c32af02285d506.tar.bz2
pfsense-packages-3546bfbf96e59a7b1bc52b9265c32af02285d506.zip
Sanitize imspector version, add run_depends and fix pbi checking
Diffstat (limited to 'config/nut')
-rw-r--r--config/nut/nut.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/nut/nut.inc b/config/nut/nut.inc
index aa0bbe13..9ba942ab 100644
--- a/config/nut/nut.inc
+++ b/config/nut/nut.inc
@@ -36,10 +36,10 @@
define('NUT_RCFILE', '/usr/local/etc/rc.d/nut.sh');
$pfs_version = substr(trim(file_get_contents("/etc/version")),0,3);
- if ($pfs_version == "2.0") {
- define('NUT_DIR','/usr/local/etc/nut');
- } else {
+ if ($pfs_version == "2.1" || $pfs_version == "2.2") {
define('NUT_DIR', '/usr/pbi/nut-' . php_uname("m") . '/etc/nut');
+ } else {
+ define('NUT_DIR','/usr/local/etc/nut');
}
function nut_notice ($msg) { syslog(LOG_NOTICE, "nut: {$msg}"); return; }