blob: 6d9e698dc7dc91f08c8744f3f0b9f2ee1b61a167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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
|