mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
305 B
10 lines
305 B
3 years ago
|
#!/bin/bash
|
||
|
#
|
||
|
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
||
|
PROJECT_DIR=$(dirname "$BASE_DIR")
|
||
|
|
||
|
|
||
|
echo "下载 IP 数据库"
|
||
|
ip_db_path="${PROJECT_DIR}/apps/common/utils/geoip/GeoLite2-City.mmdb"
|
||
|
wget "https://download.jumpserver.org/files/GeoLite2-City.mmdb" -O "${ip_db_path}"
|