1. SSH onto one of the Cloud Controllers within the foundation:
$
bosh -d <DEPLOYMENT> ssh cloud_controller/02. Run the following command to access the Ruby Cloud Controller Console:
$
/var/vcap/jobs/cloud_controller_ng/bin/console3. Run the following once a prompt is available in the console. Replace <BUILDPACK> with the buildpack name you wish to use:
$
buildpack = Buildpack.where(name: '<BUILDPACK>').firstNote: In the following example the "java_buildpack_offline" buildpack is used.

4. Run the following command and replace "GUID" and "sha256_checksum" with the GUID and sha256_checksum from the output of the previous command:
$
CloudController::DependencyLocator.instance.buildpack_blobstore.blob("<GUID_sha256_checksum>").public_download_urlNote: Be sure to include an underscore "_" between the GUID and sha256_checksum values as shown in the below example.

5. Use the generated URL to download the buildpack locally or on a jumpbox:
$
wget "DOWNLOAD_URL" -O buildpack.zip --no-check-certificate