mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
They are small, the main motivation is to correctly declare dependencies - openvpn plugin depends on openvpn package.
11 lines
264 B
Bash
11 lines
264 B
Bash
#!/bin/sh
|
|
|
|
ver_old="$2"
|
|
|
|
if [ "$(apk version -t "$ver_old" "1.40-r1")" = "<" ]; then
|
|
cat >&2 <<-EOF
|
|
* ConnMan OpenVPN and Wireguard VPN plugins have been moved into
|
|
* subpackages. If you use one of them, install connman-openvpn or
|
|
* connman-wireguard.
|
|
EOF
|
|
fi
|