76c1fe6371
Unify the shell to bash in all Kolla scripts. Change-Id: Ib9591b2f8f344eb88455c5e9b7ecf2164fb5960a Implements: blueprint use-bash-shell
14 lines
205 B
Bash
Executable File
14 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RES=0
|
|
|
|
check=$(/usr/bin/neutron agent-list | awk '/ L3 / {print $9}')
|
|
error="ERROR: Neutron L3 Agent is not alive."
|
|
|
|
if [[ $check != ":-)" ]]; then
|
|
echo $error >&2
|
|
RES=1
|
|
fi
|
|
|
|
exit $RES
|