summaryrefslogtreecommitdiffstats
path: root/vagrant-demo/scripts/host2-cfg.sh
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2016-08-19 16:56:57 +0200
committerMarek Gradzki <mgradzki@cisco.com>2016-08-19 17:05:43 +0200
commitb47d696bf3bd5640f44b43cdb12688dc19a0b5d7 (patch)
treebb0897c3590535664cf7e5ee65662ef7ca927779 /vagrant-demo/scripts/host2-cfg.sh
parent0ce0fa21ea0ae4f6e2b56546a8275901f9cf8196 (diff)
Remove vagrant scripts
Scripts were not updated for a long time, and are not actually needed. VPP vagrant scripts can be used instead. Honeycomb build needs only mvn and Java8. Change-Id: Icba286793fad4780f3ee1a3565a15b303146c82f Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'vagrant-demo/scripts/host2-cfg.sh')
-rwxr-xr-xvagrant-demo/scripts/host2-cfg.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/vagrant-demo/scripts/host2-cfg.sh b/vagrant-demo/scripts/host2-cfg.sh
deleted file mode 100755
index 92a663ffc..000000000
--- a/vagrant-demo/scripts/host2-cfg.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/bash
-#
-# Script to configure host2.
-#
-# Copyright (c) 2016 Cisco Systems, Inc. and/or others. All rights reserved.
-
-if [ "$(id -un)" != "vagrant" ] || [ "$VM_NAME" != "(host2)" ]; then
- echo "ERROR: Must be run inside the vpp1 vagrant VM!"
- exit 1
-fi
-
-HOST1_IP_ADDR="172.16.10.11"
-HOST2_IP_ADDR="172.16.10.12"
-echo
-echo "Configuring eth1 with $HOST2_IP_ADDR"
-sudo ifconfig eth1 $HOST2_IP_ADDR/24 up
-echo
-echo "ifconfig eth1:"
-ifconfig eth1
-echo
-echo "Run the following command to ping host1:"
-echo " ping $HOST1_IP_ADDR"
-echo