Created
September 1, 2015 02:12
-
-
Save KernelPanicAUS/8db5d7ee37d78eb60e9b to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
cat <<EOF > /etc/apt/sources.list.d/rabbitmq.list | |
deb http://www.rabbitmq.com/debian/ testing main | |
EOF | |
curl https://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 upgrade | |
apt-get -qy install rabbitmq-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment