mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-01 00:19:42 +00:00
* Improved ASN update script * Ran `utils/update_every_lists.sh' * `tests/do.sh.in' prints the amount of failed pcap(s) * `utils/asn_update.sh' prints the amount of failed download(s) Signed-off-by: lns <matzeton@googlemail.com>
36 lines
935 B
Bash
Executable file
36 lines
935 B
Bash
Executable file
#/bin/sh
|
|
|
|
cd "$(dirname "${0}")" || exit 1
|
|
|
|
RETVAL=0
|
|
|
|
./aws_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./azure_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./cachefly_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./cloudflare_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./ethereum_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./microsoft_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./tor_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./whatsapp_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./zoom_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./google_cloud_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./google_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
./icloud_private_relay_ip_addresses_download.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
|
|
./asn_update.sh
|
|
RETVAL=$(( RETVAL + $? ))
|
|
|
|
test ${RETVAL} -ne 0 && printf '%s: %s\n' "${0}" "${RETVAL} script(s) failed"
|
|
exit ${RETVAL}
|