diff options
author | Victor Morales <v.morales@samsung.com> | 2020-10-05 18:42:01 -0400 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2020-10-12 18:35:11 +0000 |
commit | 84f092e7961684bc9125aa7740c56ceb6811798c (patch) | |
tree | 345a24451d4d858bf833ffc29482923e3c12738f /functions.sh | |
parent | df5c8c8dc61d605931ba8e92846479990a0193dd (diff) |
Add yq checker
The yq parser is required by the deploy.env file to extract values from
PDF and IDF files. This change ensures that binary is present.
Signed-off-by: Victor Morales <v.morales@samsung.com>
Change-Id: I5400bc4910ea88da74fab188bf1cfdbebe3cbed1
Reviewed-on: https://gerrit.opnfv.org/gerrit/c/kuberef/+/71230
Tested-by: jenkins-ci <jenkins-opnfv-ci@opnfv.org>
Reviewed-by: Rihab Banday <rihab.banday@ericsson.com>
Reviewed-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to 'functions.sh')
-rwxr-xr-x | functions.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.sh b/functions.sh index 25f76ea..f0e1213 100755 --- a/functions.sh +++ b/functions.sh @@ -50,6 +50,14 @@ check_prerequisites() { fi #------------------------------------------------------------------------------- + # Check is yq is installed + #------------------------------------------------------------------------------- + if ! command -v yq &> /dev/null; then + echo "ERROR : yq not found. Please install." + exit 1 + fi + + #------------------------------------------------------------------------------- # Check is libvirt is installed #------------------------------------------------------------------------------- if ! command -v virsh &> /dev/null; then |