1
0
Fork 0
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:
Chandler Wilkerson 2019-02-21 14:21:00 -06:00 committed by John R Barker
parent 151ea2e009
commit 8b8c4aa473

View file

@ -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):
'''