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