1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/plsql/entrypoint.sh
2017-11-01 21:45:28 -05:00

18 lines
212 B
Bash
Executable File

#!/bin/bash
case ${1} in
make*)
echo "Skipping Oracle XE startup"
;;
*)
echo "Starting Oracle XE"
sudo /usr/sbin/startup.sh
;;
esac
if [ "${*}" ]; then
exec "${@}"
else
exec bash
fi