From c5585ee5fc99316e3fc5d0d53ca67a463445c4e5 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 18 Oct 2023 12:36:39 +0900 Subject: [PATCH] Fix python shebang The current shebang requires /usr/bin/python which is not available in Ubuntu Jammy by default. Change-Id: I66f870398bd431a37496168dbac8b2b03ee625ee --- bin/sbus | 2 +- bin/storlets-daemon | 2 +- bin/storlets-daemon-factory | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/sbus b/bin/sbus index 75c2e467..de10dc55 100644 --- a/bin/sbus +++ b/bin/sbus @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2016 OpenStack Foundation. # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/bin/storlets-daemon b/bin/storlets-daemon index 56cda429..252a3046 100755 --- a/bin/storlets-daemon +++ b/bin/storlets-daemon @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2015-2016 OpenStack Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/bin/storlets-daemon-factory b/bin/storlets-daemon-factory index 4ce1820f..df101906 100755 --- a/bin/storlets-daemon-factory +++ b/bin/storlets-daemon-factory @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2015-2016 OpenStack Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/setup.py b/setup.py index c0a24eab..22cfdce8 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License");