From 8db7a010d38c98f0139522dca9989fb0b4336866 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 13 Mar 2019 22:10:45 +0100 Subject: [PATCH] [Devstack] Use devstack's install_python3 function This patch switches Tobiko devstack plugin to install python 3 with helper function provided by devstack. It is compatible with both Ubuntu and Fedora based systems. Change-Id: I78a00c134da0ad9042994895983ed1b31fe03513 --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index c2a6959e6..a13e709dd 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -4,7 +4,7 @@ TOBIKO_PLUGIN_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) function install_tobiko { echo_summary "Installing tobiko-plugin" - apt_get install python3-dev + install_python3 setup_dev_lib tobiko }