From a5260ca974a467fe81a3675a03c943549b4d2b67 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen <tobias@gesellix.de> Date: Thu, 15 Sep 2022 17:59:06 +0000 Subject: [PATCH] Create target directory before copying custom schema (#256) --- opendj-packages/opendj-docker/run.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opendj-packages/opendj-docker/run.sh b/opendj-packages/opendj-docker/run.sh index 1130bf9..36bb95b 100755 --- a/opendj-packages/opendj-docker/run.sh +++ b/opendj-packages/opendj-docker/run.sh @@ -2,7 +2,7 @@ # Run the OpenDJ server # The idea is to consolidate all of the writable DJ directories to # a single instance directory root, and update DJ's instance.loc file to point to that root -# This allows us to to mount a data volume on that root which gives us +# This allows us to to mount a data volume on that root which gives us # persistence across restarts of OpenDJ. # For Docker - mount a data volume on /opt/opendj/data # For Kubernetes mount a PV @@ -54,7 +54,7 @@ if (bin/status -n | grep Started); then echo "OpenDJ is started" - # We cant exit because we are pid 1 + # We can't exit because we are pid 1 while true; do sleep 100000; done fi -- Gitblit v1.10.0