Advertisement
Guest User

Untitled

a guest
May 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. #Set up Linux and oracle
  4. echo "Deploying Oracle..."
  5.  
  6. if [[ "$1" != "" ]] ; then
  7. DEFAULT_PWD=$1
  8. echo "Using user specified default password"
  9. else
  10. DEFAULT_PWD=passW0RD
  11. fi
  12.  
  13. echo "Install prereqs..."
  14. sh prereq.sh
  15. echo "Install prereqs...done."
  16. echo "Install Oracle..."
  17. sh install.sh $DEFAULT_PWD
  18. echo "Install Oracle...done."
  19. echo "Set up Oracle..."
  20. sh setup_db.sh $DEFAULT_PWD
  21. echo "Set up Oracle...done."
  22. echo "Deploying Oracle...done."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement