aports/community/meilisearch/meilisearch.post-upgrade

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