Under OpenBSD, fix if statement for hostname.carp file detection

This commit is contained in:
Tristan 2019-03-11 15:53:04 +01:00
parent f379f6210a
commit c90de6ec1f
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ fi
if [ `uname -s` == "OpenBSD" ]; then
if [ "$IS_ADVBASE" = 1 ]; then
if [[ ls /etc/hostname.carp* 1> /dev/null 2>&1 ]]; then
if ls /etc/hostname.carp* 1> /dev/null 2>&1; then
for advbase in $(ifconfig carp | grep advbase | awk -F 'advbase' '{print $2}' | awk '{print $1}' | xargs); do
if [[ "$advbase" gt 1 ]]; then
echo 'IS_ADVBASE FAILED!'