blob: 33498d774711e2232a2952fbe0413673cd6d16bf [file] [log] [blame]
#!/bin/sh
case "$1" in
install)
cat <<BANNER
----------------------------------------------------------------------
The GeoIP dynamic modules for nginx have been installed.
To enable those modules, add the following to /etc/nginx/nginx.conf
and reload nginx:
load_module modules/ngx_http_geoip_module.so;
load_module modules/ngx_stream_geoip_module.so;
Please refer to the modules documentation for further details:
http://nginx.org/en/docs/http/ngx_http_geoip_module.html
http://nginx.org/en/docs/stream/ngx_stream_geoip_module.html
----------------------------------------------------------------------
BANNER
;;
upgrade|abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
#DEBHELPER#
exit 0