mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00:00
Exempt register vars from shell expansion (#52594)
This commit is contained in:
committed by
John R Barker
parent
151ea2e009
commit
8b8c4aa473
@@ -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):
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user