Skip to content

Commit

Permalink
Merge pull request #28 from opensourcerouting/dev/osr/rename-part1
Browse files Browse the repository at this point in the history
rename, part1
  • Loading branch information
donaldsharp authored Jan 3, 2017
2 parents 524f2ba + ab0181e commit 9f221bd
Show file tree
Hide file tree
Showing 131 changed files with 550 additions and 769 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ conftest
conftest.err
aclocal.m4
Makefile.in
zebra-[0-9.][0-9.][0-9.]*.tar.gz
quagga-[0-9.][0-9.][0-9.]*.tar.gz
quagga-[0-9.][0-9.][0-9.]*.tar.gz.asc
*.tar.gz
*.tar.gz.asc
.nfs*
libtool
.arch-inventory
Expand Down
111 changes: 0 additions & 111 deletions INSTALL.quagga.txt

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DIST_SUBDIRS = lib qpb fpm zebra bgpd ripd ripngd ospfd ospf6d ldpd \
isisd watchquagga vtysh ospfclient doc m4 pkgsrc redhat tests \
solaris pimd @LIBRFP@ @RFPTEST@ tools cumulus

EXTRA_DIST = aclocal.m4 SERVICES REPORTING-BUGS INSTALL.quagga.txt \
EXTRA_DIST = aclocal.m4 SERVICES REPORTING-BUGS \
update-autotools \
vtysh/Makefile.in vtysh/Makefile.am \
tools/rrcheck.pl tools/rrlookup.pl tools/zc.pl \
Expand Down
6 changes: 2 additions & 4 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ protocols.

Currently Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1,
RIPv2, RIPng, PIM-SSM and LDP as well as very early support for IS-IS.

See the file INSTALL.quagga.txt for building and installation instructions.


See the file REPORTING-BUGS to report bugs.

Quagga is free software. See the file COPYING for copying conditions.
2 changes: 0 additions & 2 deletions README.NetBSD
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/bin/sh

# $QuaggaId: Format:%an, %ai, %h$ $

# This file is helpful for building quagga from cvs on NetBSD, and
# probably on any system using pkgsrc.
# One should have readline installed already (pkgsrc/devel/readline).
Expand Down
6 changes: 3 additions & 3 deletions bgpd/bgp_btoa.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ static zebra_capabilities_t _caps_p [] =

struct zebra_privs_t bgpd_privs =
{
#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
.user = QUAGGA_USER,
.group = QUAGGA_GROUP,
#if defined(FRR_USER) && defined(FRR_GROUP)
.user = FRR_USER,
.group = FRR_GROUP,
#endif
#ifdef VTY_GROUP
.vty_group = VTY_GROUP,
Expand Down
10 changes: 5 additions & 5 deletions bgpd/bgp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ static zebra_capabilities_t _caps_p [] =

struct zebra_privs_t bgpd_privs =
{
#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
.user = QUAGGA_USER,
.group = QUAGGA_GROUP,
#if defined(FRR_USER) && defined(FRR_GROUP)
.user = FRR_USER,
.group = FRR_GROUP,
#endif
#ifdef VTY_GROUP
.vty_group = VTY_GROUP,
Expand Down Expand Up @@ -174,7 +174,7 @@ redistribution between different routing protocols.\n\n\
-C, --dryrun Check configuration for validity and exit\n\
-h, --help Display this help and exit\n\
\n\
Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
Report bugs to %s\n", progname, FRR_BUG_ADDRESS);
}

exit (status);
Expand Down Expand Up @@ -547,7 +547,7 @@ main (int argc, char **argv)
vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);

/* Print banner. */
zlog_notice ("BGPd %s starting: vty@%d, bgp@%s:%d", QUAGGA_VERSION,
zlog_notice ("BGPd %s starting: vty@%d, bgp@%s:%d", FRR_COPYRIGHT,
vty_port,
(bm->address ? bm->address : "<all>"),
bm->port);
Expand Down
3 changes: 1 addition & 2 deletions bgpd/bgp_mpath.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* $QuaggaId: Format:%an, %ai, %h$ $
*
/*
* BGP Multipath
* Copyright (C) 2010 Google Inc.
*
Expand Down
3 changes: 1 addition & 2 deletions bgpd/bgp_mpath.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* $QuaggaId: Format:%an, %ai, %h$ $
*
/*
* BGP Multipath
* Copyright (C) 2010 Google Inc.
*
Expand Down
Loading

0 comments on commit 9f221bd

Please sign in to comment.