We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721be9f commit dba2271Copy full SHA for dba2271
operator/src/main/resources/scripts/startServer.sh
@@ -111,7 +111,7 @@ function waitForShutdownMarker() {
111
#
112
trace "Wait indefinitely so that the Kubernetes pod does not exit and try to restart"
113
while true; do
114
- if [ -e /weblogic-operator/doShutdown ] ; then
+ if [ -e ${DOMAIN_HOME}/doShutdown ] ; then
115
exit 0
116
fi
117
sleep 3
operator/src/main/resources/scripts/stopServer.sh
@@ -74,7 +74,7 @@ if [ ! -z $pid ]; then
74
kill -15 $pid
75
76
77
-touch /weblogic-operator/doShutdown
+touch ${DOMAIN_HOME}/doShutdown
78
if [ -f /weblogic-operator/pid ]; then
79
kill -2 $(</weblogic-operator/pid)
80
0 commit comments