Replaced some apt calls by apt-get calls
Change-Id: Ia9d4f7d60bbcf6d730e0b0cfc802728ed9d23a9d
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/jenkins/system/start_build b/jenkins/system/start_build
index 823e160..e1b91ac 100755
--- a/jenkins/system/start_build
+++ b/jenkins/system/start_build
@@ -23,7 +23,7 @@
INFO "Installing packages"
apt-get update
-apt install -y lxd
+apt-get install -y lxd
INFO "Configuring LXD"
# ZFS doesn't work inside a nested container. ZFS should be configured in the host LXD.
@@ -55,9 +55,10 @@
apt-get install -y python-pip python python-pycurl charm-tools python-pytest
-apt install -y python-osmclient
+apt-get install -y python-osmclient
export OSM_USE_LOCAL_DEVOPS=true
+echo "devops/installers/install_osm.sh --test $*"
devops/installers/install_osm.sh --test $*
RC=$?