Skip to content

Instantly share code, notes, and snippets.

@basmussen
Last active January 1, 2016 18:09
Show Gist options
  • Save basmussen/8181895 to your computer and use it in GitHub Desktop.
Save basmussen/8181895 to your computer and use it in GitHub Desktop.
Install Jenkins (Debian)
#!/bin/bash
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
echo "deb http://pkg.jenkins-ci.org/debian binary/" >> /etc/apt/sources.list
apt-get update
apt-get -y install jenkins
# scm clients
apt-get -y install git
apt-get -y install subversion
apt-get -y install curl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment