blob: 21a37ff9c00d1dac8186f82e73e92df713625855 [file] [log] [blame]
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This script can be tested for validity by doing something like:
#
# docker run -v "${OPENWHISK_HOME}:/openwhisk" ubuntu:trusty \
# sh -c 'apt-get update && apt-get -y install sudo && /openwhisk/tools/ubuntu-setup/all.sh'
#
# ...but see the WARNING at the bottom of the script before tinkering.
set -e
set -x
JAVA_SOURCE=${1:-"open"}
SOURCE="${BASH_SOURCE[0]}"
SCRIPTDIR="$( dirname "$SOURCE" )"
echo "*** installing basics"
/bin/bash "$SCRIPTDIR/misc.sh"
echo "*** installing python dependences"
/bin/bash "$SCRIPTDIR/pip.sh"
echo "*** installing java"
/bin/bash "$SCRIPTDIR/java8.sh" $JAVA_SOURCE
echo "*** installing ansible"
/bin/bash "$SCRIPTDIR/ansible.sh"
# WARNING:
#
# This step MUST be last when testing scripts for validity using
# Docker (as recommended above). The reason is because the scripted restart
# of docker may actually communicates with a Docker for Mac controlling
# instance and terminate the container. It's the last step, so it's okay,
# but nothing after this step will run in that validity test situation.
echo "*** installing docker"
u_release="$(lsb_release -rs)"
if [ "${u_release%%.*}" -lt "16" ]; then
/bin/bash "$SCRIPTDIR/docker.sh"
else
echo "--- WARNING -------------------------------------------------"
echo "Using EXPERIMENTAL Docker CE script on Xenial or later Ubuntu"
echo "--- WARNING -------------------------------------------------"
/bin/bash "$SCRIPTDIR/docker-xenial.sh"
fi