From 9da01bfbeb0dc03e71848ca90a22ea7b06d92f10 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 8 Jun 2020 16:05:11 -0700 Subject: [PATCH] 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 --- launch/dns.py | 2 +- launch/sshclient.py | 2 +- launch/utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/launch/dns.py b/launch/dns.py index 9f2b4a9373..01d6931ed7 100755 --- a/launch/dns.py +++ b/launch/dns.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Launch a new OpenStack project infrastructure node. diff --git a/launch/sshclient.py b/launch/sshclient.py index 1c23aafda4..8ff86ca315 100644 --- a/launch/sshclient.py +++ b/launch/sshclient.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Update the base image that is used for devstack VMs. diff --git a/launch/utils.py b/launch/utils.py index 3e1387dfe2..4c9bf9dd5f 100644 --- a/launch/utils.py +++ b/launch/utils.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Update the base image that is used for devstack VMs.