mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 03:39:53 +03:00
13 lines
243 B
Bash
13 lines
243 B
Bash
#!/bin/sh
|
|
|
|
ver_new="$1"
|
|
ver_old="$2"
|
|
|
|
if [ $(apk version -t "$ver_old" '6.0.4-r0') = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
echo ' *'
|
|
echo ' * If you are managing certificates through ACME'
|
|
echo ' * please install lego package'
|
|
echo ' *'
|
|
EOF
|
|
fi
|