Skip to content

Instantly share code, notes, and snippets.

@jodell
Created November 22, 2011 21:32
Show Gist options
  • Save jodell/1387050 to your computer and use it in GitHub Desktop.
Save jodell/1387050 to your computer and use it in GitHub Desktop.
Chef Server
# Chef Server Setup on Ubuntu/Debian
echo "deb http://apt.opscode.com/ `lsb_release -cs`-0.10 main" | tee /etc/apt/sources.list.d/opscode.list
mkdir -p /etc/apt/trusted.gpg.d
gpg --keyserver keys.gnupg.net --recv-keys 83EF826A
gpg --export [email protected] | tee /etc/apt/trusted.gpg.d/opscode-keyring.gpg > /dev/null
apt-get update
apt-get install opscode-keyring
apt-get upgrade
apt-get install chef chef-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment