blob: 931c09ab23b48764eb59fad8f11f537790a0e020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
ver_new="$1"
ver_old="$2"
if [ "$(apk version -t "$ver_old" "3.18.1-r2")" = "<" ]; then
cat >&2 <<-EOF
*
* The following modules has been moved to separate packages:
* add-contextual-data, examples, graphite, map-value-pairs,
* python2, redis, stardate, stomp, tags-parser, xml, geoip,
* http.
* If you use one of these, install the relevant package(s), e.g.:
* apk add syslog-ng-redis
*
* Custom modularized configuration has been replaced with single
* syslog-ng.conf file that loads fragments from /etc/syslog-ng/conf.d
* using syslog-ng's include directive.
*
EOF
fi
|