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