blob: 793d0d442ef1b690becf2845569e14cd39d40c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
ver_new="$1"
ver_old="$2"
if [ "$(apk version -t "$ver_old" "2.0.18-r2")" = "<" ]; then
cat 1>&2 <<-EOF
*
* uWSGI plugins for Python 2 were removed. uwsgi-python and uwsgi-gevent
* are aliases for uwsgi-python3 and uwsgi-gevent3, respectively!
*
EOF
fi
exit 0
|