Change launch scripts to python3 shebangs

As part of our audit to find out what needs to be ported from python2 to
python3 I've discovered that launch-node is already all python3 (because
it runs on bridge) but the shebangs still pointed to `python`. Update
them to reduce confusion while we do the audit and potentially
uplift/port things.

Change-Id: I9a4c9397a1bc9a8b39c60b92ce58c77c0cb3f7f0
This commit is contained in:
Clark Boylan 2020-06-08 16:05:11 -07:00
parent c3ba8fd0b5
commit 9da01bfbeb
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Launch a new OpenStack project infrastructure node. # Launch a new OpenStack project infrastructure node.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Update the base image that is used for devstack VMs. # Update the base image that is used for devstack VMs.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Update the base image that is used for devstack VMs. # Update the base image that is used for devstack VMs.