Install a Review Board adapter without internet access

Install a Review Board adapter without internet access.

The following instructions pertain to situations where your Review Board server does not have outbound access to the internet. Follow the instructions in Install a Review Board adapter on Mac OS X/Linux until you are directed here to continue.
  1. Contact the CollabNet Support to download the eventq_rb-[version].zip archive file.
  2. Extract the archive file on the target server.

    unzip eventq_rb-[version].zip

  3. Install the EventQ adapter as a Review Board extension

    Use the command below to install the EventQ adapter as an extension. If upgrading the Review Board adapter, skip to the next step.

    sudo pip install --use-wheel --no-index --find-links=PATH_TO_WHEELHOUSE eventq_rb

    where PATH_TO_WHEELHOUSE is the path to the directory where you unzipped the adapter file. Suppose you unzipped the adapter file to the /tmp directory. In such a case, the PATH_TO_WHEELHOUSE is /tmp.

    Example: sudo pip install --use-wheel --no-index --find-links=/home/myusername/wheelhouse/ eventq_rb

  4. Upgrading the Review Board adapter

    If upgrading (instead of installing), add the -U flag to upgrade to the latest version of the Review Board adapter

    sudo pip install -U --use-wheel --no-index --find-links=PATH_TO_WHEELHOUSE eventq_rb

  5. Continue with installation documentation

    Please continue with Install a Review Board adapter on Mac OS X/Linux picking up with step 5.