Remove plugin only if exists

This commit is contained in:
phil 2023-10-23 12:27:35 +02:00
parent 982522ca8e
commit ebeb090ef8

View file

@ -4,6 +4,7 @@
set -eu
OPENSEARCH_BIN_PATH=/usr/share/opensearch/bin
OPENSEARCH_PLUGIN_PATH=/usr/share/opensearch/plugins
OPENSEARCH_SERVICE=opensearch.service
PLUGINS=(
{% for plugin in opensearch_plugins %}
@ -19,7 +20,9 @@ ACTION="${1:-help}"
case "$ACTION" in
purge)
for plugin in "${PLUGINS[@]}"; do
$OPENSEARCH_BIN_PATH/opensearch-plugin remove $plugin
if [ -d "$OPENSEARCH_PLUGIN_PATH/$plugin" ]; then
$OPENSEARCH_BIN_PATH/opensearch-plugin remove $plugin
fi
done
systemctl restart $OPENSEARCH_SERVICE
;;