prepare for later
[jackhill/mal.git] / plsql / entrypoint.sh
1 #!/bin/bash
2
3 case ${1} in
4 make*)
5 echo "Skipping Oracle XE startup"
6 ;;
7 *)
8 echo "Starting Oracle XE"
9 sudo /usr/sbin/startup.sh
10 ;;
11 esac
12
13 if [ "${*}" ]; then
14 exec "${@}"
15 else
16 exec bash
17 fi