Test for custom data items in init-docker
All checks were successful
Create Docker Image / Build Docker Image (arm64) (push) Successful in 43s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 20s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
Deon George 2025-02-11 13:33:36 +11:00
parent 400b2b8444
commit 95f1cf6cd1

View File

@ -24,7 +24,7 @@ function mp() {
set +e
mountpoint -q $1
local mp=$?
set -
set -e
return ${mp}
}
@ -76,9 +76,11 @@ if [ -z "$@" ]; then
echo "- Processing SCHEMA modify item [${f}]"
slapmodify -b cn=config -l ${f}
done
shopt -u nullglob
# Add custom data definitions
for i in 01 03 04 05 06 07; do
ls -al ${SLAPD_SCHEMA_BASE}/data.d/${i}-* >/dev/null 2>&1 || continue
echo "- Processing DATABASE item(s) for DB [${i}]"
cat ${SLAPD_SCHEMA_BASE}/data.d/${i}-* | slapadd -n ${i}
done