aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/vLBMS/scripts/run_health_vdns.sh
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-03-21 17:29:27 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-21 17:29:27 +0000
commitd8ff19612d74d1ace0947294f774c9ef0c992de0 (patch)
tree6ff00cccdc4046486097afaa392e71e7c46425b4 /vnfs/vLBMS/scripts/run_health_vdns.sh
parentbf0018f03f9513786c28ae9b12b70cbffb3b719b (diff)
parentfe366e6d7ff18924cf33bd743e9674fa238f2b89 (diff)
Merge "Add Heat templates and scripts for vLBMS"
Diffstat (limited to 'vnfs/vLBMS/scripts/run_health_vdns.sh')
-rw-r--r--vnfs/vLBMS/scripts/run_health_vdns.sh8
1 files changed, 8 insertions, 0 deletions
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