Commit fe494d47 by Feanil Patel

Merge pull request #3072 from edx/feanil/remove_rabbit_ppa

Feanil/remove rabbit ppa
parents 5daee75c f45f735e
...@@ -29,8 +29,6 @@ RABBITMQ_CLUSTERED_HOSTS: [] ...@@ -29,8 +29,6 @@ RABBITMQ_CLUSTERED_HOSTS: []
# option to force deletion of the mnesia dir # option to force deletion of the mnesia dir
rabbitmq_refresh: false rabbitmq_refresh: false
rabbitmq_apt_key: "http://www.rabbitmq.com/rabbitmq-signing-key-public.asc"
rabbitmq_repository: "deb http://www.rabbitmq.com/debian/ testing main"
# We mirror the deb package for rabbitmq-server because # We mirror the deb package for rabbitmq-server because
# nodes need to be running the same version # nodes need to be running the same version
rabbitmq_pkg_url: "http://files.edx.org/rabbitmq_packages/rabbitmq-server_3.2.3-1_all.deb" rabbitmq_pkg_url: "http://files.edx.org/rabbitmq_packages/rabbitmq-server_3.2.3-1_all.deb"
......
...@@ -3,15 +3,9 @@ ...@@ -3,15 +3,9 @@
# There is a bug with initializing multiple nodes in the HA cluster at once # There is a bug with initializing multiple nodes in the HA cluster at once
# http://rabbitmq.1065348.n5.nabble.com/Rabbitmq-boot-failure-with-quot-tables-not-present-quot-td24494.html # http://rabbitmq.1065348.n5.nabble.com/Rabbitmq-boot-failure-with-quot-tables-not-present-quot-td24494.html
- name: trust rabbit repository
apt_key: url={{ rabbitmq_apt_key }} state=present
- name: install python-software-properties if debian - name: install python-software-properties if debian
apt: pkg={{ ",".join(rabbitmq_debian_pkgs) }} state=present apt: pkg={{ ",".join(rabbitmq_debian_pkgs) }} state=present
- name: add rabbit repository
apt_repository: repo="{{ rabbitmq_repository }}" state=present update_cache=yes
- name: fetch the rabbitmq server deb - name: fetch the rabbitmq server deb
get_url: > get_url: >
url={{ rabbitmq_pkg_url }} url={{ rabbitmq_pkg_url }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment