diff options
author | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 15:01:27 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 15:01:27 -0500 |
commit | f7abc3682a6c9ad3879d567b213d80710ce66498 (patch) | |
tree | a35651fdbcb457bf17c2826db350c2099f5a6fe4 /config | |
parent | 8c7402fe0ca077b81c2c6edb6fb2604689ab18f6 (diff) | |
download | pfsense-packages-f7abc3682a6c9ad3879d567b213d80710ce66498.tar.gz pfsense-packages-f7abc3682a6c9ad3879d567b213d80710ce66498.tar.bz2 pfsense-packages-f7abc3682a6c9ad3879d567b213d80710ce66498.zip |
Show md5 url too
Diffstat (limited to 'config')
-rw-r--r-- | config/snort/snort_download_rules.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/snort/snort_download_rules.php b/config/snort/snort_download_rules.php index 1c940c54..93b215e8 100644 --- a/config/snort/snort_download_rules.php +++ b/config/snort/snort_download_rules.php @@ -208,13 +208,13 @@ $tmpfname = tempnam("/tmp", "snortRules"); exec("/bin/rm -rf {$tmpfname};/bin/mkdir -p {$tmpfname}"); /* download snort rules */ -$static_output = gettext("Downloading current snort rules... {$snort_filename}"); +$static_output = gettext("Downloading current snort rules... {$dl}"); update_all_status($static_output); download_file_with_progress_bar($dl, $tmpfname . "/{$snort_filename}"); verify_downloaded_file($tmpfname . "/{$snort_filename}"); /* download snort rules md5 file */ -$static_output = gettext("Downloading current snort rules md5... "); +$static_output = gettext("Downloading current snort rules md5... {$dl_md5}"); update_all_status($static_output); download_file_with_progress_bar($dl_md5, $tmpfname . "/{$snort_filename_md5}"); verify_downloaded_file($tmpfname . "/{$snort_filename_md5}"); |