mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
14 lines
280 B
Bash
14 lines
280 B
Bash
#!/bin/sh
|
|
|
|
if [ "$(apk version -t "$2" '1.1.1-r0')" = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* Meilisearch configuration has been moved from /etc/conf.d/meilisearch
|
|
* to /etc/meilisearch/config.toml. Remove all env variables from the former
|
|
* and adjust the latter.
|
|
*
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|