Print error message when Oracle Java installation failed.
Oracle JDK cannot be installed using launchpad,
if the ubuntu release has reached EOL. (ONOS-1157)
This patch add a message to suggest user to check ubuntu version.
Change-Id: I962fed84fcbf80c3902b3f48e3d45f815ccad3f3
diff --git a/install-oracle-java.sh b/install-oracle-java.sh
index bbefbee..b4eed0a 100755
--- a/install-oracle-java.sh
+++ b/install-oracle-java.sh
@@ -43,8 +43,19 @@
set -e
sudo apt-get update
-sudo apt-get install ${SILENT} oracle-java7-set-default
-
+{
+ sudo apt-get install ${SILENT} oracle-java7-set-default
+} || {
+ { set +x; } 2>/dev/null
+ echo
+ echo "Installing Oracle Java failed."
+ echo "This script cannot be used if ubuntu release has reached end of life."
+ echo "Check if your ubuntu release is still supported."
+ echo " https://wiki.ubuntu.com/Releases"
+ echo
+ lsb_release -a
+ exit 1
+}
{ set +x; } 2>/dev/null
echo
echo "Done. You may need to relogin for the environment variable change to take effect."