Fix test-matrix shebang for ansible 6

Ansible 6 interprets the shebang for module files to determine which
version of python to use. Because we use env instead of python as the
executable we break all that. We run this script in testing directly as
well as via ansible as a module. That means we need a working shebang
and can't just drop it as zuul-jobs did.

Change-Id: I9a331d508276d9abe72c789fd91fc77a4136c5ca
This commit is contained in:
Clark Boylan 2022-10-11 07:57:28 -07:00
parent 2c891c51d5
commit 9401b54929
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.