diff options
author | Renato Botelho <garga@FreeBSD.org> | 2015-04-28 09:08:26 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-04-28 09:08:26 -0300 |
commit | 6500c8a27534895557e4f5ed046e244a51e2b721 (patch) | |
tree | af0ff7c4a2ff77451d1c6854fb2a74c6d658b711 /config | |
parent | 31be9bd8e0f10b68612689b6fdcc5bb4e0b76740 (diff) | |
download | pfsense-packages-6500c8a27534895557e4f5ed046e244a51e2b721.tar.gz pfsense-packages-6500c8a27534895557e4f5ed046e244a51e2b721.tar.bz2 pfsense-packages-6500c8a27534895557e4f5ed046e244a51e2b721.zip |
Sanitize nmap version, add port_category, run_depends and fix pbi checking
Diffstat (limited to 'config')
-rw-r--r-- | config/nmap/nmap.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/nmap/nmap.inc b/config/nmap/nmap.inc index f66f6be9..632d4b2d 100644 --- a/config/nmap/nmap.inc +++ b/config/nmap/nmap.inc @@ -32,14 +32,14 @@ function nmap_install() { $destination_file = "/usr/local/share/nmap/nmap-mac-prefixes"; $pfs_version = substr(trim(file_get_contents("/etc/version")),0,3); switch ($pfs_version) { - case "1.2": - case "2.0": - return null; case "2.1": $source_file = "/usr/pbi/nmap-" . php_uname("m") . "/share/nmap/nmap-mac-prefixes"; break; - default: + case "2.2": $source_file = "/usr/pbi/nmap-" . php_uname("m") . "/local/share/nmap/nmap-mac-prefixes"; + break; + default: + return null; } /* Only copy the file if it doesn't exist */ if (file_exists($source_file) && !file_exists($destination_file)) { |