Skip to main content

Migrate From Bintray


Migrate Packages From Bintray Repo

April 27th, 2021

In February, JFrog announced that it would be ending their Bintray distribution service. The official download distributions of Rundeck are now available on a new hosting service. See below for full details about new repository sources and guidance about signing keys. Any automation that your team has created utilizing Rundeck’s Bintray repositories will need to be updated prior to May 1st, 2021.

Migration Instructions

Note

Rundeck has rotated the signing key used to sign release packages. All previously released deb, rpm, and war packages have been re-signed and uploaded. The new public key can be found here in the Rundeck packaging repoopen in new window.

Enterprise

Quick setup script

The quick setup scriptopen in new window will configure the Process Automation repository, import the new repository signing key, and update apt. Legacy configuration will be replaced.

curl https://raw.githubusercontent.com/rundeck/packaging/main/scripts/deb-setup.sh 2> /dev/null | sudo bash -s rundeckpro

Manual setup

Import the repo signing key:

curl -L https://packages.rundeck.com/pagerduty/rundeckpro/gpgkey | sudo apt-key add -

Add the following to /etc/apt/sources.list.d/rundeck.list replacing existing entries:

deb https://packages.rundeck.com/pagerduty/rundeckpro/any/ any main
deb-src https://packages.rundeck.com/pagerduty/rundeckpro/any/ any main

Update apt cache:

sudo apt-get update

Community

Quick setup script

The quick setup scriptopen in new window will configure the Rundeck Community repository, import the new repository signing key, and update apt. Legacy configuration will be replaced.

curl https://raw.githubusercontent.com/rundeck/packaging/main/scripts/deb-setup.sh 2> /dev/null | sudo bash -s rundeck

Manual setup

Import the repo signing key:

curl -L https://packages.rundeck.com/pagerduty/rundeck/gpgkey | sudo apt-key add -

Add the following to /etc/apt/sources.list.d/rundeck.list replacing existing entries:

deb https://packages.rundeck.com/pagerduty/rundeck/any/ any main
deb-src https://packages.rundeck.com/pagerduty/rundeck/any/ any main

Update apt cache:

sudo apt-get update