|
|
|
@ -59,12 +59,23 @@ EXAMPLES = '''
|
|
|
|
|
- rabbitmq_plugin: names=rabbitmq_management state=enabled
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
class RabbitMqPlugins(object):
|
|
|
|
|
def __init__(self, module):
|
|
|
|
|
self.module = module
|
|
|
|
|
|
|
|
|
|
if module.params['prefix']:
|
|
|
|
|
self._rabbitmq_plugins = module.params['prefix'] + "/sbin/rabbitmq-plugins"
|
|
|
|
|
if os.path.isdir(os.path.join(module.params['prefix'], 'bin')):
|
|
|
|
|
bin_path = os.path.join(module.params['prefix'], 'bin')
|
|
|
|
|
elif os.path.isdir(os.path.join(module.params['prefix'], 'sbin')):
|
|
|
|
|
bin_path = os.path.join(module.params['prefix'], 'sbin')
|
|
|
|
|
else:
|
|
|
|
|
# No such path exists.
|
|
|
|
|
raise Exception("No binary folder in RabbitMQ prefix")
|
|
|
|
|
|
|
|
|
|
self._rabbitmq_plugins = bin_path + "/rabbitmq-plugins"
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
self._rabbitmq_plugins = module.get_bin_path('rabbitmq-plugins', True)
|
|
|
|
|
|
|
|
|
|