diff mbox

[ovs-dev] Include vtep dir into the sandbox path

Message ID 1441270484-24672-1-git-send-email-mangelajo@redhat.com
State Not Applicable
Headers show

Commit Message

Miguel Angel Ajo Sept. 3, 2015, 8:54 a.m. UTC
Otherwise the built vtep-ctl is not available from the
sandbox command line.
---
 tutorial/ovs-sandbox | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Russell Bryant Sept. 3, 2015, 12:26 p.m. UTC | #1
On 09/03/2015 04:54 AM, Miguel Angel Ajo wrote:
> Otherwise the built vtep-ctl is not available from the
> sandbox command line.
> ---
>  tutorial/ovs-sandbox | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
> index c8fc32f..5e0553b 100755
> --- a/tutorial/ovs-sandbox
> +++ b/tutorial/ovs-sandbox
> @@ -258,7 +258,7 @@ if $built; then
>          echo >&2 'build not found, please change set $builddir or change directory'
>          exit 1
>      fi
> -    PATH=$builddir/ovsdb:$builddir/vswitchd:$builddir/utilities:$PATH
> +    PATH=$builddir/ovsdb:$builddir/vswitchd:$builddir/utilities:$builddir/vtep:$PATH
>      if $ovn; then
>          PATH=$builddir/ovn:$builddir/ovn/controller:$builddir/ovn/controller-vtep:$builddir/ovn/northd:$builddir/ovn/utilities:$PATH
>      fi
> 

Thanks for the patch!  Can you re-submit with a "Signed-off-by" line in
the commit message?  See this doc for more info if you're not familiar
with the DCO (Developer's Certificate of Origin):

https://github.com/openvswitch/ovs/blob/master/CONTRIBUTING.md
diff mbox

Patch

diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index c8fc32f..5e0553b 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -258,7 +258,7 @@  if $built; then
         echo >&2 'build not found, please change set $builddir or change directory'
         exit 1
     fi
-    PATH=$builddir/ovsdb:$builddir/vswitchd:$builddir/utilities:$PATH
+    PATH=$builddir/ovsdb:$builddir/vswitchd:$builddir/utilities:$builddir/vtep:$PATH
     if $ovn; then
         PATH=$builddir/ovn:$builddir/ovn/controller:$builddir/ovn/controller-vtep:$builddir/ovn/northd:$builddir/ovn/utilities:$PATH
     fi