mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Exempt register vars from shell expansion (#52594)
This commit is contained in:
parent
151ea2e009
commit
8b8c4aa473
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ class Rhsm(RegistrationBase):
|
|||
if release:
|
||||
args.extend(['--release', release])
|
||||
|
||||
rc, stderr, stdout = self.module.run_command(args, check_rc=True)
|
||||
rc, stderr, stdout = self.module.run_command(args, check_rc=True, expand_user_and_vars=False)
|
||||
|
||||
def unsubscribe(self, serials=None):
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue