#!/bin/bash
#
# (c) Copyright 2016 Hewlett Packard Enterprise Development LP
# (c) Copyright 2017 SUSE LLC
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#

binary_path=$1
novaclient_lib_path=$2

# nuage-metadata-agent deb package depends on nuage-openvswitch-switch,
# nuage-python-openvswitch, python-httplib2, python-novaclient and
# python-openvswitch.
#
# The "ovs" is delivered by nuage-python-openvswitch.
# The setproctitle is a package dependency of nuage-openvswitch-switch.
# We make the following symbolic links to make httplib2, ovs, and setproctitle
# accessible from the novaclient venv.
ln -s -f "$binary_path/ovs" "$novaclient_lib_path/."
ln -s -f "$binary_path/httplib2"* "$novaclient_lib_path/."
ln -s -f "$binary_path/setproctitle"* "$novaclient_lib_path/."
