From 84f092e7961684bc9125aa7740c56ceb6811798c Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Mon, 5 Oct 2020 18:42:01 -0400 Subject: 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 Change-Id: I5400bc4910ea88da74fab188bf1cfdbebe3cbed1 Reviewed-on: https://gerrit.opnfv.org/gerrit/c/kuberef/+/71230 Tested-by: jenkins-ci Reviewed-by: Rihab Banday Reviewed-by: Georg Kunz --- functions.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'functions.sh') diff --git a/functions.sh b/functions.sh index 25f76ea..f0e1213 100755 --- a/functions.sh +++ b/functions.sh @@ -49,6 +49,14 @@ check_prerequisites() { exit 1 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 #------------------------------------------------------------------------------- -- cgit 1.2.3-korg