Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions conf/solr/update-fields.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ while getopts ":hp" opt; do
done

# Check for ed and bc being present
exists ed || error "Please ensure ed, bc, sed + awk are installed"
exists bc || error "Please ensure ed, bc, sed + awk are installed"
exists awk || error "Please ensure ed, bc, sed + awk are installed"
exists sed || error "Please ensure ed, bc, sed + awk are installed"
exists ed || error "Please ensure ed, bc, sed + awk are installed (ed is missing)"
exists bc || error "Please ensure ed, bc, sed + awk are installed (bc is missing)"
exists awk || error "Please ensure ed, bc, sed + awk are installed (awk is missing)"
exists sed || error "Please ensure ed, bc, sed + awk are installed (sed is missing)"

# remove all the parsed options
shift $((OPTIND-1))
Expand Down
1 change: 1 addition & 0 deletions doc/release-notes/11722-configbaker-bc-missing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
When following the container demo tutorial, it was not possible to update Solr fields after adding additional metadata blocks. This has been fixed. See #11722 and #11723
2 changes: 1 addition & 1 deletion modules/container-configbaker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ENV SCRIPT_DIR="/scripts" \
ENV PATH="${PATH}:${SCRIPT_DIR}" \
BOOTSTRAP_DIR="${SCRIPT_DIR}/bootstrap"

ARG PKGS="curl dnsutils dumb-init ed jq netcat-openbsd postgresql-client"
ARG PKGS="bc curl dnsutils dumb-init ed jq netcat-openbsd postgresql-client"
# renovate: datasource=github-releases depName=wait4x/wait4x
ARG WAIT4X_VERSION="v3.2.0"
# renovate: datasource=pypi depName=awscli
Expand Down
Loading