Commit eeb6199e by e0d

Bug fixes, removed creates, which docs say works, but doesn't, add task to…

Bug fixes, removed creates, which docs say works, but doesn't, add task to verify the owner and mode.  Add var for the managment port.
parent 18c9e265
......@@ -72,6 +72,10 @@
#
- name: rabbitmq | install admin tools
get_url:
url=localhost:{{ rabitmq_port }}/cli/rabbitmqadmin
url=http://localhost:{{ rabbitmq_management_port }}/cli/rabbitmqadmin
dest=/usr/local/bin/rabbitmqadmin
creates=/usr/local/bin/rabbitmqadmin
\ No newline at end of file
- name: rabbitmq | ensure rabbitmqadmin attributes
file:
path=/usr/local/bin/rabbitmqadmin owner=root
group=root mode=0655
\ No newline at end of file
#Varibables for rabbitmq
#Variables for rabbitmq
---
rabbitmq_apt_key: "http://www.rabbitmq.com/rabbitmq-signing-key-public.asc"
rabbitmq_repository: "deb http://www.rabbitmq.com/debian/ testing main"
......@@ -13,6 +13,7 @@ rabbitmq_cookie_location: "{{rabbitmq_cookie_dir}}/.erlang.cookie"
rabbitmq_mnesia_folder: "{{rabbitmq_cookie_dir}}/mnesia"
rabbitmq_port: 5672
rabbitmq_management_port: 15672
rabbitmq_auth_config:
erlang_cookie: "CHANGE ME"
......
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