aboutsummaryrefslogtreecommitdiffstats
path: root/main/openvpn-auth-ldap/openvpn-auth-ldap.post-upgrade
blob: 8056c772b39f397c8dbd8eb19f6de96c73e24e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

ver_new="$1"
ver_old="$2"

if [ "$(apk version -t "$ver_old" "2.0.4-r3")" = '<' ]; then
	cat >&2 <<-EOF
	*
	* openvpn-auth-ldap.so was moved to /usr/lib/openvpn/plugins/!
	*
	EOF
fi

exit 0