Last active
February 3, 2017 06:11
-
-
Save dceoy/95c0db2ad04f571278e17db37de839e8 to your computer and use it in GitHub Desktop.
[Ubuntu] Install Rundeck
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| wget -q -O - https://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add - | |
| echo 'deb http://dl.bintray.com/rundeck/rundeck-deb /' | sudo tee -a /etc/apt/sources.list.d/rundeck.list | |
| echo 'deb-src http://dl.bintray.com/rundeck/rundeck-deb /' | sudo tee -a /etc/apt/sources.list.d/rundeck.list | |
| sudo apt-get -y update | |
| sudo apt-get -y install rundeck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment