From 9cc51ae2c8b8064c3d9ae5f23c121215dd0b4ff6 Mon Sep 17 00:00:00 2001 From: Hongbin Lu Date: Mon, 25 Apr 2022 13:36:34 +0000 Subject: [PATCH] Fix the bindir path It looks the bindir should be "/usr/local/libexec/kuryr" instead. Closes-Bug: #1970217 Change-Id: I92cb41bf22e28cbbeb9e88699432dbfadef86107 --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index ee4b87f0..d3780c32 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -74,7 +74,7 @@ function configure_kuryr { # main loop if is_service_enabled kuryr-libnetwork; then - DISTRO_DISTUTILS_DATA_PATH=$(python3 -c "import distutils.dist;import distutils.command.install;inst = distutils.command.install.install(distutils.dist.Distribution());inst.finalize_options();print(inst.install_data)") + DISTRO_DISTUTILS_DATA_PATH=$(python3 -c "import distutils.dist;import distutils.command.install;inst = distutils.command.install.install(distutils.dist.Distribution());inst.finalize_options();print(inst.install_data)")/local if [[ "$1" == "stack" && "$2" == "install" ]]; then # Install kuryr-lib from git so we make sure we're testing # the latest code.