summaryrefslogtreecommitdiffstats
path: root/node-admin/scripts/setup-route-and-hosts-osx.sh
blob: dcfcfc0f121e32925fa8a061232ca850bcfd0520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

set -e

echo "This will alter your routing table and /etc/hosts file. Continue ?"
select yn in "Yes" "No"; do
    case $yn in
        Yes ) break;;
        No ) echo "Exiting."; exit;;
    esac
done

# Setup the route
cd "$SCRIPT_DIR"
./route-osx.sh

# Setup the hosts file
cd "$SCRIPT_DIR"
./etc-hosts.sh