Re: [ovs-dev] [ovn-controller-vtep V4 2/6] ovn-sbctl: Add ovn-sbctl.

2015-07-27 Thread Ben Pfaff
On Thu, Jul 16, 2015 at 12:56:23AM -0700, Alex Wang wrote: > This commit adds ovn-sbctl to ovn family by using the db-ctl-base > library. > > As a side effect, we move the ovn-nbctl/ovn-sbctl related files > into ovn/utilities. > > Signed-off-by: Alex Wang > Acked-by: Ben Pfaff > > --- > V3->V

Re: [ovs-dev] [ovn-controller-vtep V4 2/6] ovn-sbctl: Add ovn-sbctl.

2015-07-16 Thread Alex Wang
On Thu, Jul 16, 2015 at 6:38 AM, Russell Bryant wrote: > On 07/16/2015 03:56 AM, Alex Wang wrote: > > +static void > > +usage(void) > > +{ > > +printf("\ > > +%s: ovs-vswitchd management utility\n\ > > +\n\ > > +for debugging and testing only, never use it in production\n\ > > +\n\ > > +usage

Re: [ovs-dev] [ovn-controller-vtep V4 2/6] ovn-sbctl: Add ovn-sbctl.

2015-07-16 Thread Russell Bryant
On 07/16/2015 03:56 AM, Alex Wang wrote: > +static void > +usage(void) > +{ > +printf("\ > +%s: ovs-vswitchd management utility\n\ > +\n\ > +for debugging and testing only, never use it in production\n\ > +\n\ > +usage: %s [OPTIONS] COMMAND [ARG...]\n\ > +\n\ > +SouthBound DB commands:\n\ > +

[ovs-dev] [ovn-controller-vtep V4 2/6] ovn-sbctl: Add ovn-sbctl.

2015-07-16 Thread Alex Wang
This commit adds ovn-sbctl to ovn family by using the db-ctl-base library. As a side effect, we move the ovn-nbctl/ovn-sbctl related files into ovn/utilities. Signed-off-by: Alex Wang Acked-by: Ben Pfaff --- V3->V4: - mention ovn-sbctl should never be used in normal operation. V2->V3: - rebas