1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Don't use a shell and thus avoid a whole class of problems

This commit is contained in:
Jeremy Katz 2012-02-24 16:10:53 -05:00
parent bd37864242
commit 24e10dc2e8

View file

@ -11,7 +11,7 @@ import datetime
args = sys.argv[1:]
startd = datetime.datetime.now()
cmd = subprocess.Popen(args, shell=True,
cmd = subprocess.Popen(args, shell=False,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = cmd.communicate()