1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/main/kea/kea-common.post-upgrade
2022-11-01 13:30:42 +00:00

14 lines
221 B
Bash

#!/bin/sh
ver_old="$2"
if [ "$(apk version -t "$ver_old" '2.0.0-r0')" = '<' ]; then
cat >&2 <<-EOF
*
* Kea BOOTP hook has been moved to a subpackage. If you use it, run
* apk add kea-hook-bootp
*
EOF
fi
exit 0