aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2019-07-23 11:47:02 +0200
committerVratko Polak <vrpolak@cisco.com>2019-07-23 11:47:02 +0200
commit2d5fa6ba9d88091869a83dd1ae10272e2d5bdde8 (patch)
tree0fe085470ac713973d9c08e81576f03822673ef5
parentb4f0e4d00a1bb93ead30ca22f25595a9776773cf (diff)
Install also sshpass tin centos bootstraps
Perhaps not needed, but it is better to keep copied code consistent. Change-Id: I068de028586ee6e659e91207f99c2a78ef377e3c Signed-off-by: Vratko Polak <vrpolak@cisco.com>
-rwxr-xr-xbootstrap-DMM.sh2
-rwxr-xr-xbootstrap-hc2vpp-integration-odl.sh2
-rwxr-xr-xbootstrap-hc2vpp-integration.sh2
-rwxr-xr-xbootstrap-hc2vpp-verify-odl.sh2
-rwxr-xr-xbootstrap-hc2vpp-verify.sh2
-rw-r--r--bootstrap-vpp-verify-nightly.sh2
-rw-r--r--bootstrap-vpp-verify-semiweekly.sh2
-rw-r--r--bootstrap-vpp-verify-weekly.sh2
8 files changed, 8 insertions, 8 deletions
diff --git a/bootstrap-DMM.sh b/bootstrap-DMM.sh
index be5010cdf4..145d0bd968 100755
--- a/bootstrap-DMM.sh
+++ b/bootstrap-DMM.sh
@@ -28,7 +28,7 @@ export PYTHONPATH=${SCRIPT_DIR}
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
DPDK_ARTIFACTS=""
VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS)
VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS)
diff --git a/bootstrap-hc2vpp-integration-odl.sh b/bootstrap-hc2vpp-integration-odl.sh
index 4e5b7247ac..5272c7f06b 100755
--- a/bootstrap-hc2vpp-integration-odl.sh
+++ b/bootstrap-hc2vpp-integration-odl.sh
@@ -40,7 +40,7 @@ ODL=$3
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS)
VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS)
else
diff --git a/bootstrap-hc2vpp-integration.sh b/bootstrap-hc2vpp-integration.sh
index d4f3c80c26..7120fdc43d 100755
--- a/bootstrap-hc2vpp-integration.sh
+++ b/bootstrap-hc2vpp-integration.sh
@@ -39,7 +39,7 @@ OS=$2
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS)
VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS)
else
diff --git a/bootstrap-hc2vpp-verify-odl.sh b/bootstrap-hc2vpp-verify-odl.sh
index 3a5a4de615..2c55434a05 100755
--- a/bootstrap-hc2vpp-verify-odl.sh
+++ b/bootstrap-hc2vpp-verify-odl.sh
@@ -39,7 +39,7 @@ ODL=$2
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS)
VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS)
else
diff --git a/bootstrap-hc2vpp-verify.sh b/bootstrap-hc2vpp-verify.sh
index d8a772d063..e6e2d8a724 100755
--- a/bootstrap-hc2vpp-verify.sh
+++ b/bootstrap-hc2vpp-verify.sh
@@ -37,7 +37,7 @@ OS=$1
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
VIRL_TOPOLOGY=$(cat ${SCRIPT_DIR}/VIRL_TOPOLOGY_CENTOS)
VIRL_RELEASE=$(cat ${SCRIPT_DIR}/VIRL_RELEASE_CENTOS)
else
diff --git a/bootstrap-vpp-verify-nightly.sh b/bootstrap-vpp-verify-nightly.sh
index b5843e893a..cebb66958f 100644
--- a/bootstrap-vpp-verify-nightly.sh
+++ b/bootstrap-vpp-verify-nightly.sh
@@ -35,7 +35,7 @@ LOG_PATH="$TMPDIR"
if [ -f "/etc/redhat-release" ]; then
DISTRO="CENTOS"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
PACKAGE=rpm
else
DISTRO="UBUNTU"
diff --git a/bootstrap-vpp-verify-semiweekly.sh b/bootstrap-vpp-verify-semiweekly.sh
index e45cc49e94..0902305b0c 100644
--- a/bootstrap-vpp-verify-semiweekly.sh
+++ b/bootstrap-vpp-verify-semiweekly.sh
@@ -45,7 +45,7 @@ OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\
if [ "$OS_ID" == "centos" ]; then
DISTRO="CENTOS"
PACKAGE="rpm"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
elif [ "$OS_ID" == "ubuntu" ]; then
DISTRO="UBUNTU"
PACKAGE="deb"
diff --git a/bootstrap-vpp-verify-weekly.sh b/bootstrap-vpp-verify-weekly.sh
index aad18d8fd7..6b90a274d0 100644
--- a/bootstrap-vpp-verify-weekly.sh
+++ b/bootstrap-vpp-verify-weekly.sh
@@ -41,7 +41,7 @@ OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\
if [ "$OS_ID" == "centos" ]; then
DISTRO="CENTOS"
PACKAGE="rpm"
- sudo yum install -y python-devel python-virtualenv openssh-client
+ sudo yum install -y python-devel python-virtualenv openssh-client sshpass
elif [ "$OS_ID" == "ubuntu" ]; then
DISTRO="UBUNTU"
PACKAGE="deb"