This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project> | |
... | |
<properties> | |
<!-- Datbase --> | |
<db.host>oradev</db.host> | |
<db.port>1521</db.port> | |
<db.service>dev.loc</db.service> | |
<db.user.test>TEST</db.user.test> | |
<db.pw.test>test</db.pw.test> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Set up Linux and oracle | |
echo "Deploying Oracle..." | |
if [[ "$1" != "" ]] ; then | |
DEFAULT_PWD=$1 | |
echo "Using user specified default password" | |
else | |
DEFAULT_PWD=passW0RD |