Skip to content

Instantly share code, notes, and snippets.

@abysshal
Last active April 21, 2016 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save abysshal/6060149 to your computer and use it in GitHub Desktop.
Save abysshal/6060149 to your computer and use it in GitHub Desktop.
#!/bin/sh
cat <<EOF > /etc/apt/sources.list.d/rabbitmq.list
deb http://www.rabbitmq.com/debian/ testing main
EOF
curl http://www.rabbitmq.com/rabbitmq-signing-key-public.asc -o /tmp/rabbitmq-signing-key-public.asc
apt-key add /tmp/rabbitmq-signing-key-public.asc
rm /tmp/rabbitmq-signing-key-public.asc
apt-get -qy update
apt-get -qy install rabbitmq-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment