aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/vagrant/install_hc_debs.sh
diff options
context:
space:
mode:
authorLudovit Mikula <ludovit.mikula@pantheon.tech>2019-02-06 15:47:23 +0100
committerĽudovít Mikula <ludovit.mikula@pantheon.tech>2019-04-09 15:10:12 +0200
commit374ea2f45d17f361aa612becba657ecaade0d0b5 (patch)
treeca29e9c804c52aa14cc577299443958491f4e994 /resources/tools/vagrant/install_hc_debs.sh
parent42e6c422a5ce4f58813a8c3a44ba0e9ac9238c9a (diff)
Add vagrant setup for testing VPP device locally
Fixed trailing whitespaces Fixed tabs vs. spaces Removed dead code Changed network interface naming Changed default number of retries for VPP startup to 120 Updated number of hugepages during provisioning Externalized CSIT related sysctl settings to 90-csit.conf Removed hardcoded local docker image name. Added new interface required for honeycomb device testing. Change-Id: I5eb38c8b1a4d96e4220dbd2e202e94f1d47e804e Signed-off-by: Ludovit Mikula <ludovit.mikula@pantheon.tech>
Diffstat (limited to 'resources/tools/vagrant/install_hc_debs.sh')
-rwxr-xr-xresources/tools/vagrant/install_hc_debs.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/resources/tools/vagrant/install_hc_debs.sh b/resources/tools/vagrant/install_hc_debs.sh
deleted file mode 100755
index edb15fa05f..0000000000
--- a/resources/tools/vagrant/install_hc_debs.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2016 Cisco and/or its affiliates.
-# Licensed 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.
-set -x
-
-USERNAME=csit
-
-function ssh_do_all {
- # ssh ${USERNAME}@192.168.255.100 ${@} || exit
- ssh ${USERNAME}@192.168.255.101 ${@} || exit
- ssh ${USERNAME}@192.168.255.102 ${@} || exit
-}
-
-# rsync -avz ${@} ${USERNAME}@192.168.255.100:/tmp/ || exit
-rsync -avz ${@} ${USERNAME}@192.168.255.101:/tmp/ || exit
-rsync -avz ${@} ${USERNAME}@192.168.255.102:/tmp/ || exit
-
-ssh_do_all "sudo apt-get -y purge 'honeycomb*' ; exit 0"
-ssh_do_all "sudo dpkg -i /tmp/honeycomb*.deb"