install_osm.sh: fix osmclient dependencies: python-magic
Change-Id: Idbba2f3f785e5cdbf8486e074de462b7f469d8f9
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/installers/install_osm.sh b/installers/install_osm.sh
index a0966e8..9836bf2 100755
--- a/installers/install_osm.sh
+++ b/installers/install_osm.sh
@@ -420,6 +420,9 @@
curl $key_location | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=amd64] $CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE $CLIENT_REPOSITORY osmclient"
sudo apt-get update
+ sudo apt-get install -y python-pip
+ sudo -H pip install pip==9.0.3
+ sudo -H pip install python-magic
sudo apt-get install -y python-osmclient
#sed 's,OSM_SOL005=[^$]*,OSM_SOL005=True,' -i ${HOME}/.bashrc
#echo 'export OSM_HOSTNAME=localhost' >> ${HOME}/.bashrc
@@ -540,20 +543,6 @@
echo "Finished deployment of lightweight build"
}
-function install_osmclient_sol005() {
- sudo apt-get update
- sudo apt-get install -y python-pip libcurl4-gnutls-dev libgnutls-dev
- git -C ${LWTEMPDIR} clone https://osm.etsi.org/gerrit/osm/osmclient
- sudo -H pip install -U pip
- sudo -H pip install -U setuptools
- pushd ${LWTEMPDIR}/osmclient
- sudo -H python setup.py install
- popd
- #sed 's,OSM_SOL005=[^$]*,OSM_SOL005=True,' -i ~/.bashrc
- echo 'export OSM_HOSTNAME=localhost' >> ${HOME}/.bashrc
- echo 'export OSM_SOL005=True' >> ${HOME}/.bashrc
-}
-
function install_lightweight() {
echo "Installing lightweight build of OSM"
LWTEMPDIR="$(mktemp -d -q --tmpdir "installosmlight.XXXXXX")"