Merge "Update to use 1.2.1 release demo artifacts" into beijing
[demo.git] / vnfs / vLBMS / scripts / run_health_vdns.sh
1 #!/bin/bash
2
3 PID=$(service bind9 status | grep inactive)
4 if [[ -z $PID ]]; then
5         echo "healthy" > status.txt
6 else
7         echo "unhealthy" > status.txt
8 fi