File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ rabbitmq Cookbook CHANGELOG
2
2
===========================
3
3
This file is used to list changes made in each version of the rabbitmq cookbook.
4
4
5
- v4.0.1 (2015-06-16)
5
+ v4.1.2 (2015-06-16)
6
+ --------------------
7
+ - Stupid Rubocop
8
+
9
+ v4.1.1 (2015-06-16)
6
10
--------------------
7
11
- Fix single quote and nil issues with cluster recipe #274
8
12
- Fixed 'rabbitmqctl eval' command for old rabbitmq versions #272
Original file line number Diff line number Diff line change 3
3
maintainer_email '[email protected] '
4
4
license 'Apache 2.0'
5
5
description 'Installs and configures RabbitMQ server'
6
- version '4.1.1 '
6
+ version '4.1.2 '
7
7
recipe 'rabbitmq' , 'Install and configure RabbitMQ'
8
8
recipe 'rabbitmq::cluster' , 'Set up RabbitMQ clustering.'
9
9
recipe 'rabbitmq::plugin_management' , 'Manage plugins with node attributes'
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ def user_exists?(name)
34
34
end
35
35
end
36
36
37
- def user_has_tag? ( name , tag )
38
- cmd = " rabbitmqctl -q list_users"
37
+ def user_has_tag? ( name , tag ) # rubocop:disable all
38
+ cmd = ' rabbitmqctl -q list_users'
39
39
cmd = Mixlib ::ShellOut . new ( cmd )
40
40
cmd . environment [ 'HOME' ] = ENV . fetch ( 'HOME' , '/root' )
41
41
cmd . run_command
You can’t perform that action at this time.
0 commit comments