aboutsummaryrefslogtreecommitdiffstats
path: root/main/nginx/nginx.post-upgrade
diff options
context:
space:
mode:
authorValery Kartel <valery.kartel@gmail.com>2017-03-17 12:05:44 +0200
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-03-17 10:29:51 +0000
commite07695e1581744e63bd459f7fa827f51c4d8dbf7 (patch)
tree1ed3e7b5d9f9187a0fd195993eb1a1f69b864292 /main/nginx/nginx.post-upgrade
parent3c979daea8b4edb2efde9199fe3ef7b4bb31f916 (diff)
downloadaports-e07695e1581744e63bd459f7fa827f51c4d8dbf7.tar.bz2
aports-e07695e1581744e63bd459f7fa827f51c4d8dbf7.tar.xz
main/nginx: add all modules from testing/nginx-naxsi
- added modules: naxsi, cache_purge, upstream-fair, sysguard - remade dynamic modules definition - upgrade modules nchan to 1.1.2 rtmp to 1.1.11 naxsi to 0.55.3 - add checkconfig to init script - cleaned and improved APKBUILD
Diffstat (limited to 'main/nginx/nginx.post-upgrade')
-rw-r--r--main/nginx/nginx.post-upgrade23
1 files changed, 0 insertions, 23 deletions
diff --git a/main/nginx/nginx.post-upgrade b/main/nginx/nginx.post-upgrade
deleted file mode 100644
index 6d9e698dc7..0000000000
--- a/main/nginx/nginx.post-upgrade
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-ver_new="$1"
-ver_old="$2"
-
-if [ "$(apk version -t "$ver_old" "1.10.1-r3")" = "<" ]; then
- cat 1>&2 <<-EOF
- *
- * The nginx package has been modified to use dynamic modules. Now there's
- * just single package providing nginx executable and bunch of nginx-mod-*
- * subpackages.
- *
- * Lua support is now provided by package nginx-mod-http-lua, RTMP support
- * is provided by nginx-mod-rtmp.
- *
- * Modules mail and stream are dynamic modules too and so not included
- * by default anymore. If you use them, install nginx-mod-mail and
- * nginx-mod-stream.
- *
- EOF
-fi
-
-exit 0