aports/community/radsecproxy/radsecproxy.post-upgrade
2021-10-27 20:47:05 +02:00

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