mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
* Reference paths relative to the current script or project root Before this PR: - some scripts change the current working directory and use relative paths - different approaches are taken to know which directory a script is running in - paths are sometimes relative, sometimes absolute, sometimes traversing directories After this PR: - scripts do neither change nor care much about the current working directory - a unified approach determines the directory of the current script - paths are always relative to the project root This should resolve an issue I already tried to fix with https://github.com/getsentry/self-hosted/pull/1798, where the contents of `./sentry` were not copied into the built container image, thus `enhance-image.sh` did not apply. Co-authored-by: Amin Vakil <info@aminvakil.com>
35 lines
964 B
Bash
35 lines
964 B
Bash
echo "${_group}Setting up GeoIP integration ..."
|
|
|
|
install_geoip() {
|
|
local mmdb=geoip/GeoLite2-City.mmdb
|
|
local conf=geoip/GeoIP.conf
|
|
local result='Done'
|
|
|
|
echo "Setting up IP address geolocation ..."
|
|
if [[ ! -f "$mmdb" ]]; then
|
|
echo -n "Installing (empty) IP address geolocation database ... "
|
|
cp "$mmdb.empty" "$mmdb"
|
|
echo "done."
|
|
else
|
|
echo "IP address geolocation database already exists."
|
|
fi
|
|
|
|
if [[ ! -f "$conf" ]]; then
|
|
echo "IP address geolocation is not configured for updates."
|
|
echo "See https://develop.sentry.dev/self-hosted/geolocation/ for instructions."
|
|
result='Error'
|
|
else
|
|
echo "IP address geolocation is configured for updates."
|
|
echo "Updating IP address geolocation database ... "
|
|
if ! $dcr geoipupdate; then
|
|
result='Error'
|
|
fi
|
|
echo "$result updating IP address geolocation database."
|
|
fi
|
|
echo "$result setting up IP address geolocation."
|
|
}
|
|
|
|
install_geoip
|
|
|
|
echo "${_endgroup}"
|