From: peusterm Date: Fri, 7 Feb 2020 09:12:29 +0000 (+0100) Subject: Fix: The vim-emu installation requires OVS to be installed X-Git-Tag: release-v8.0-start~65^2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=a3a7d1481ef61cf954e1f8c8f4f881aad0240299;hp=-c;p=osm%2Fdevops.git Fix: The vim-emu installation requires OVS to be installed on the host machine. This wasn't an issue before because OVS was automatically installed as part of some other installation procedures. Now, OVS is not 'automatically there' and will cause vim-emu to not work properly after the installation. Change-Id: I562bc83ee21e18bf35a175e81f900b2d2ee3fd59 Signed-off-by: peusterm --- a3a7d1481ef61cf954e1f8c8f4f881aad0240299 diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index ed4d2a4c..c12d202f 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -1338,6 +1338,8 @@ function install_vimemu() { echo "\nInstalling vim-emu" EMUTEMPDIR="$(mktemp -d -q --tmpdir "installosmvimemu.XXXXXX")" trap 'rm -rf "${EMUTEMPDIR}"' EXIT + # install prerequisites (OVS is a must for the emulator to work) + sudo apt-get install openvswitch-switch # clone vim-emu repository (attention: branch is currently master only) echo "Cloning vim-emu repository ..." git clone https://osm.etsi.org/gerrit/osm/vim-emu.git $EMUTEMPDIR