Revisions

gist: 46010 Download_button fork
public
Public Clone URL: git://gist.github.com/46010.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ruby
 
puts `rabbitmqctl add_vhost /nanite`
 
%w[mapper nanite].each do |agent|
  puts `rabbitmqctl add_user #{agent} testing`
  puts `rabbitmqctl map_user_vhost #{agent} /nanite`
end
 
puts `rabbitmqctl list_vhosts`
puts `rabbitmqctl list_users`
puts `rabbitmqctl list_vhost_users /nanite`