aboutsummaryrefslogtreecommitdiffstats
path: root/testcases/features/sfc/tacker_client_install.sh
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-07-05 20:14:50 +0200
committerJose Lausuch <jose.lausuch@ericsson.com>2016-07-05 18:16:31 +0000
commit908d9ccc46bb1e0c6edb5f9cc37920c4728a0336 (patch)
treed41a24921892cc6de4d2ce722e787c09970efb5b /testcases/features/sfc/tacker_client_install.sh
parente166b8c9c23a07ad1345829114c714b2d7ebcfdd (diff)
Fix tacker client dependencies installation
JIRA: FUNCTEST-354 Change-Id: Ia62fcf0a2ed8dcb80b81d786593dd9f3c6333df2 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/features/sfc/tacker_client_install.sh')
-rwxr-xr-xtestcases/features/sfc/tacker_client_install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/testcases/features/sfc/tacker_client_install.sh b/testcases/features/sfc/tacker_client_install.sh
index 9e8bb9359..a3073177c 100755
--- a/testcases/features/sfc/tacker_client_install.sh
+++ b/testcases/features/sfc/tacker_client_install.sh
@@ -21,8 +21,8 @@ ____EOF
function envSetup() {
apt-get install -y python-all debhelper fakeroot
+ pip install --upgrade python-keystoneclient==1.7.4
chkPPkg stdeb
- chkCrudini
}
# Function installs python-tackerclient from github
@@ -35,6 +35,8 @@ function deployTackerClient() {
CLIENT=$(echo python-python-tackerclient_*_all.deb)
cp $CLIENT $MYDIR
dpkg -i "${MYDIR}/${CLIENT}"
+ apt-get -f -y install
+ dpkg -i "${MYDIR}/${CLIENT}"
}
envSetup