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:
parent
c94ec20a16
commit
b79d7a606c
1 changed files with 3 additions and 3 deletions
|
@ -92,7 +92,7 @@ class RabbitMqUser(object):
|
|||
self.username = username
|
||||
self.password = password
|
||||
if tags is None:
|
||||
self.tags = []
|
||||
self.tags = list()
|
||||
else:
|
||||
self.tags = tags.split(',')
|
||||
|
||||
|
@ -109,7 +109,7 @@ class RabbitMqUser(object):
|
|||
self._rabbitmqctl = module.get_bin_path("rabbitmqctl", True)
|
||||
|
||||
def _exec(self, args):
|
||||
cmd = ["rabbitmqctl", "-q"]
|
||||
cmd = [self._rabbitmqctl, "-q"]
|
||||
rc, out, err = self.module.run_command(cmd + args, check_rc=True)
|
||||
return out.splitlines()
|
||||
|
||||
|
@ -126,7 +126,7 @@ class RabbitMqUser(object):
|
|||
if tags != '':
|
||||
self._tags = tags.split(',')
|
||||
else:
|
||||
self._tags = []
|
||||
self._tags = list()
|
||||
|
||||
self._permissions = self._get_permissions()
|
||||
|
||||
|
|
Loading…
Reference in a new issue