Bug fix of tacker_client_install 95/16395/4
authorManuel Buil <manuel.buil@ericsson.com>
Tue, 5 Jul 2016 16:31:37 +0000 (18:31 +0200)
committerManuel Buil <manuel.buil@ericsson.com>
Tue, 5 Jul 2016 16:36:49 +0000 (18:36 +0200)
JIRA: FUNCTEST-354

There is a library missing

Change-Id: I6e1ddef4558c49ec715ea318fedd5b4cefa62670
Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
testcases/features/sfc/tacker_client_install.sh

index 295dd26..9e8bb93 100755 (executable)
@@ -3,7 +3,7 @@ CLIENT=$(echo python-python-tackerclient_*_all.deb)
 CLIREPO="tacker-client"
 
 # Function checks whether a python egg is available, if not, installs
-function chkPPkg () {
+function chkPPkg() {
     PKG="$1"
     IPPACK=$(python - <<'____EOF'
 import pip
@@ -19,8 +19,8 @@ ____EOF
     fi
 }
 
-function envSetup () {
-    apt-get install -y python-all debhelper
+function envSetup() {
+    apt-get install -y python-all debhelper fakeroot
     chkPPkg stdeb
     chkCrudini
 }