diff options
Diffstat (limited to 'lib/configure-deps-functions.sh')
-rwxr-xr-x | lib/configure-deps-functions.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/configure-deps-functions.sh b/lib/configure-deps-functions.sh index 3c82c66a..32900015 100755 --- a/lib/configure-deps-functions.sh +++ b/lib/configure-deps-functions.sh @@ -90,9 +90,14 @@ EOF fi done else + # verify virtualbmc is installed for a virtual install + if ! rpm -q python2-virtualbmc; then + echo -e "${red}ERROR: Package python2-virtualbmc is required to do a virtual install.$reset" + exit 1 + fi for network in ${OPNFV_NETWORK_TYPES}; do if ! ovs-vsctl --may-exist add-br ${NET_MAP[$network]}; then - echo -e "${red}ERROR: Failed to create ovs bridge ${NET_MAP[$network]}{$reset}" + echo -e "${red}ERROR: Failed to create ovs bridge ${NET_MAP[$network]}${reset}" exit 1 fi echo "${blue}INFO: Creating Virsh Network: $network${reset}" |