mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
16 lines
286 B
Bash
16 lines
286 B
Bash
#!/bin/sh
|
|
|
|
ver_old="$2"
|
|
|
|
if [ "$(apk version -t "$ver_old" '1.9.1-r1')" = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* The default location of radsecproxy.conf has been moved from
|
|
* /etc/radsecproxy/ to /etc/. radsecproxy binary has been moved from
|
|
* /usr/bin/ to /usr/sbin/.
|
|
*
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|