# Building Logical Variables
if test "x$TYPE" = "x"; then
  TYPE=client
fi

if test "x$LDAPHOSTS" = "x"; then
  if test "x$SLAVES" != "x"; then
    LDAPHOSTS="$SLAVES $MASTER"
  else
    LDAPHOSTS="$MASTER"
  fi
fi

