From fe366e6d7ff18924cf33bd743e9674fa238f2b89 Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Wed, 21 Mar 2018 10:11:32 -0400 Subject: Add Heat templates and scripts for vLBMS - Heat templates that install the vLBMS components - Installation scripts that install and configure the VNF components Change-Id: Ie1911a67b830d5543c96174fb915afd30d8daf0c Issue-ID: INT-447 Signed-off-by: Marco Platania --- vnfs/vLBMS/scripts/run_health_vdns.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vnfs/vLBMS/scripts/run_health_vdns.sh (limited to 'vnfs/vLBMS/scripts/run_health_vdns.sh') diff --git a/vnfs/vLBMS/scripts/run_health_vdns.sh b/vnfs/vLBMS/scripts/run_health_vdns.sh new file mode 100644 index 00000000..8851fa98 --- /dev/null +++ b/vnfs/vLBMS/scripts/run_health_vdns.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +PID=$(service bind9 status | grep active) +if [[ -z $PID ]]; then + echo "unhealthy" > status.txt +else + echo "healthy" > status.txt +fi -- cgit 1.2.3-korg