diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-07-06 08:48:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-06 08:48:58 +0000 |
commit | 72306b25f2040f3064e2efb60f0ebb09622ffd42 (patch) | |
tree | a39b2d5e20f782073bd075296daafa7f878560b4 /testcases/features | |
parent | 8a47742393cf468f64639aec29ee78d6c28ff441 (diff) | |
parent | 908d9ccc46bb1e0c6edb5f9cc37920c4728a0336 (diff) |
Merge "Fix tacker client dependencies installation"
Diffstat (limited to 'testcases/features')
-rwxr-xr-x | testcases/features/sfc/tacker_client_install.sh | 4 |
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 |