Skip to content

Commit 3c0e934

Browse files
adhramesvivek-sam
authored andcommitted
Containerfile lint fix
1 parent bffad8c commit 3c0e934

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

OracleSOASuite/dockerfiles/14.1.2.0/Containerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ RUN "$JAVA_HOME/bin/java" -jar "$FMW_JAR1" -silent -responseFile /u01/soasuite.r
6161
WORKDIR ${OPATCH_PATCH_DIR}
6262
RUN opatchzip=`ls ${OPATCH_PATCH_DIR}/p*.zip 2>/dev/null`; \
6363
if [ ! -z "$opatchzip" ]; then \
64-
echo -e "\nApplying the below OPatch patch present in ${OPATCH_PATCH_DIR} directory."; \
64+
echo "Applying the below OPatch patch present in ${OPATCH_PATCH_DIR} directory."; \
6565
ls p*.zip; \
66-
echo -e ""; \
66+
echo ""; \
6767
echo "Extracting patch: ${opatchzip}"; \
6868
$JAVA_HOME/bin/jar xf ${opatchzip} ; \
6969
if ! $JAVA_HOME/bin/java -jar ${OPATCH_PATCH_DIR}/6880880/opatch_generic.jar -silent oracle_home=$ORACLE_HOME; then \
@@ -82,25 +82,25 @@ RUN opatchzip=`ls ${OPATCH_PATCH_DIR}/p*.zip 2>/dev/null`; \
8282
WORKDIR /u01/patches
8383
RUN export OPATCH_NO_FUSER=TRUE && patchzips=`ls /u01/patches/p*.zip 2>/dev/null`; \
8484
if [ ! -z "$patchzips" ]; then \
85-
echo -e "\nBelow patches present in patches directory. Applying these patches:"; \
85+
echo "Below patches present in patches directory. Applying these patches:"; \
8686
ls p*.zip; \
87-
echo -e ""; \
87+
echo ""; \
8888
for filename in `ls p*.zip`; do echo "Extracting patch: ${filename}"; $JAVA_HOME/bin/jar xf ${filename}; done; \
8989
rm -f /u01/patches/p*.zip; \
9090
$ORACLE_HOME/OPatch/opatch napply -silent -oh $ORACLE_HOME -jre $JAVA_HOME -invPtrLoc /u01/oraInst.loc -phBaseDir /u01/patches; \
9191
$ORACLE_HOME/OPatch/opatch util cleanup -silent; \
9292
rm -rf /u01/patches /u01/oracle/cfgtoollogs/opatch/*; \
93-
echo -e "\nPatches applied in SOA oracle home are:"; \
93+
echo "Patches applied in SOA oracle home are:"; \
9494
$ORACLE_HOME/OPatch/opatch lspatches; \
9595
else \
96-
echo -e "\nNo patches present in patches directory. Skipping patch application."; \
96+
echo "No patches present in patches directory. Skipping patch application."; \
9797
fi && \
9898
# Extract XEngine tar gz if present
9999
if [ -d "${ORACLE_HOME}/soa/soa/thirdparty/edifecs" ] && [ -f "$ORACLE_HOME/soa/soa/thirdparty/edifecs/XEngine_8_4_1_23.tar.gz" ]; then \
100100
tar -zxvf "$ORACLE_HOME/soa/soa/thirdparty/edifecs/XEngine_8_4_1_23.tar.gz" \
101101
-C "$ORACLE_HOME/soa/soa/thirdparty/edifecs"; \
102102
else \
103-
echo -e "\nNo XEngine_8_4_1_23.tar.gz present in ${ORACLE_HOME}/soa/soa/thirdparty/edifecs directory. Skipping untar."; \
103+
echo "No XEngine_8_4_1_23.tar.gz present in ${ORACLE_HOME}/soa/soa/thirdparty/edifecs directory. Skipping untar."; \
104104
fi && \
105105
# zip as few log files grow larger when patches are installed.
106106
if ls /u01/oracle/cfgtoollogs/opatch/*.log; then \

0 commit comments

Comments
 (0)