| # 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. |
| |
| #!/bin/bash |
| |
| set -e |
| |
| if [ -z $(which javac) ]; then |
| apt-get -y update |
| apt-get install -y --no-install-recommends software-properties-common python-software-properties |
| add-apt-repository -y ppa:webupd8team/java |
| apt-get -y update |
| |
| # Try to share cache. See Vagrantfile for details |
| mkdir -p /var/cache/oracle-jdk8-installer |
| if [ -e "/tmp/oracle-jdk8-installer-cache/" ]; then |
| find /tmp/oracle-jdk8-installer-cache/ -not -empty -exec cp '{}' /var/cache/oracle-jdk8-installer/ \; |
| fi |
| |
| /bin/echo debconf shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections |
| apt-get -y install --force-yes --no-install-recommends oracle-java8-installer oracle-java8-set-default maven2 |
| |
| if [ -e "/tmp/oracle-jdk8-installer-cache/" ]; then |
| cp -R /var/cache/oracle-jdk8-installer/* /tmp/oracle-jdk8-installer-cache |
| fi |
| fi |
| |
| chmod a+rw /opt |
| if [ -h /opt/distributedlog-trunk ]; then |
| # reset symlink |
| rm /opt/distributedlog-trunk |
| fi |
| |
| ln -s /vagrant /opt/distributedlog-trunk |
| |
| # For EC2 nodes, we want to use /mnt, which should have the local disk. On local |
| # VMs, we can just create it if it doesn't exist and use it like we'd use |
| # /tmp. Eventually, we'd like to also support more directories, e.g. when EC2 |
| # instances have multiple local disks. |
| if [ ! -e /mnt ]; then |
| mkdir /mnt |
| fi |
| |
| chmod a+rwx /mnt |
| |