1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Using new qualified executable

This commit is contained in:
Chris Hoffman 2013-02-10 17:00:09 -05:00
parent c94ec20a16
commit b79d7a606c

View file

@ -92,7 +92,7 @@ class RabbitMqUser(object):
self.username = username self.username = username
self.password = password self.password = password
if tags is None: if tags is None:
self.tags = [] self.tags = list()
else: else:
self.tags = tags.split(',') self.tags = tags.split(',')
@ -109,7 +109,7 @@ class RabbitMqUser(object):
self._rabbitmqctl = module.get_bin_path("rabbitmqctl", True) self._rabbitmqctl = module.get_bin_path("rabbitmqctl", True)
def _exec(self, args): def _exec(self, args):
cmd = ["rabbitmqctl", "-q"] cmd = [self._rabbitmqctl, "-q"]
rc, out, err = self.module.run_command(cmd + args, check_rc=True) rc, out, err = self.module.run_command(cmd + args, check_rc=True)
return out.splitlines() return out.splitlines()
@ -126,7 +126,7 @@ class RabbitMqUser(object):
if tags != '': if tags != '':
self._tags = tags.split(',') self._tags = tags.split(',')
else: else:
self._tags = [] self._tags = list()
self._permissions = self._get_permissions() self._permissions = self._get_permissions()