summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2017-03-30 20:22:35 +0200
committerLou Berger <lberger@labn.net>2017-03-30 20:22:35 +0200
commit447a8fe92ebf4615ba1f6c1259af9aa64f0d21a6 (patch)
tree092d3d129e2c55b66f99ee8a2d2f0ab659b82017
parentMerge pull request #299 from opensourcerouting/test-ref-out (diff)
downloadfrr-447a8fe92ebf4615ba1f6c1259af9aa64f0d21a6.tar.xz
frr-447a8fe92ebf4615ba1f6c1259af9aa64f0d21a6.zip
Rename: FreeRangeRouting FRRouting
Signed-off-by: Lou Berger <lberger@labn.net>
-rw-r--r--ChangeLog2
-rw-r--r--REPORTING-BUGS6
-rwxr-xr-xconfigure.ac6
-rw-r--r--defaults.h2
-rw-r--r--doc/Building_FRR_on_CentOS6.md2
-rw-r--r--doc/Building_FRR_on_CentOS7.md2
-rw-r--r--doc/Building_FRR_on_Debian8.md2
-rw-r--r--doc/Building_FRR_on_Fedora24.md2
-rw-r--r--lib/command.c2
-rw-r--r--lib/version.h.in2
-rw-r--r--ospfd/ospf_dump_api.c2
-rw-r--r--ospfd/ospf_dump_api.h2
-rw-r--r--redhat/README.rpm_build.md2
-rw-r--r--redhat/frr.spec.in12
-rw-r--r--snapcraft/README.snap_build.md10
-rw-r--r--snapcraft/README.usage.md10
-rw-r--r--snapcraft/snapcraft.yaml.in6
-rw-r--r--solaris/README.txt12
-rw-r--r--solaris/depend.daemons.in2
-rw-r--r--solaris/depend.dev.in2
-rw-r--r--solaris/depend.libs.in2
-rw-r--r--solaris/depend.smf.in2
-rwxr-xr-xsolaris/frr.init.in12
-rw-r--r--solaris/frr.xml.in18
-rw-r--r--tests/helpers/python/frrtest.py2
25 files changed, 62 insertions, 62 deletions
diff --git a/ChangeLog b/ChangeLog
index a201bb681..6793fc25d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-ChangeLog information for FreeRangeRouting is for now recorded in source-code
+ChangeLog information for FRRouting is for now recorded in source-code
management system. Please see:
http://www.freerangerouting.org/
diff --git a/REPORTING-BUGS b/REPORTING-BUGS
index ea36ff5ee..a37f5c282 100644
--- a/REPORTING-BUGS
+++ b/REPORTING-BUGS
@@ -1,5 +1,5 @@
-This file describes the procedure for reporting FreeRangeRouting bugs. You are not
-obliged to follow this format, but it would be great help for FreeRangeRouting developers
+This file describes the procedure for reporting FRRouting bugs. You are not
+obliged to follow this format, but it would be great help for FRRouting developers
if you report a bug as described below.
Bugs submitted with woefully incomplete information may be summarily
@@ -13,7 +13,7 @@ Report bugs on Github Issue Tracker at
https://github.com/freerangerouting/frr/issues
Please supply the following information:
-1. Your FreeRangeRouting version or if it is from git then the commit reference.
+1. Your FRRouting version or if it is from git then the commit reference.
Please try to report bugs against git master or the latest release.
2. FRR daemons you run e.g. bgpd or ripd and full name of your OS. Any
specific options you compiled Quagga with.
diff --git a/configure.ac b/configure.ac
index 9fc3cb72f..cbddaa63f 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
##
-## Configure template file for FreeRangeRouting.
+## Configure template file for FRRouting.
## autoconf will generate configure script.
##
## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
@@ -9,7 +9,7 @@ AC_PREREQ(2.60)
AC_INIT(frr, 2.0-rc2, [https://github.com/freerangerouting/frr/issues])
PACKAGE_URL="https://freerangerouting.org/"
-PACKAGE_FULLNAME="FreeRangeRouting"
+PACKAGE_FULLNAME="FRRouting"
AC_SUBST(PACKAGE_FULLNAME)
CONFIG_ARGS="$ac_configure_args"
@@ -1639,7 +1639,7 @@ AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
AC_OUTPUT
echo "
-FreeRangeRouting configuration
+FRRouting configuration
------------------------------
FRR version : ${PACKAGE_VERSION}
host operating system : ${host_os}
diff --git a/defaults.h b/defaults.h
index e43fb2aa1..57e35f3ce 100644
--- a/defaults.h
+++ b/defaults.h
@@ -2,7 +2,7 @@
* FRR switchable defaults.
* Copyright (C) 2017 David Lamparter for NetDEF, Inc.
*
- * This file is part of FreeRangeRouting (FRR).
+ * This file is part of FRRouting (FRR).
*
* FRR is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/doc/Building_FRR_on_CentOS6.md b/doc/Building_FRR_on_CentOS6.md
index ccb07fb2a..1ff474823 100644
--- a/doc/Building_FRR_on_CentOS6.md
+++ b/doc/Building_FRR_on_CentOS6.md
@@ -69,7 +69,7 @@ any packages**
sudo groupadd -g 92 frr
sudo groupadd -r -g 85 frrvt
sudo useradd -u 92 -g 92 -M -r -G frrvt -s /sbin/nologin \
- -c "FRR FreeRangeRouting suite" -d /var/run/frr frr
+ -c "FRR FRRouting suite" -d /var/run/frr frr
### Download Source, configure and compile it
(You may prefer different options on configure statement. These are just
diff --git a/doc/Building_FRR_on_CentOS7.md b/doc/Building_FRR_on_CentOS7.md
index cd10a91ed..1a9bcb881 100644
--- a/doc/Building_FRR_on_CentOS7.md
+++ b/doc/Building_FRR_on_CentOS7.md
@@ -28,7 +28,7 @@ any packages**
sudo groupadd -g 92 frr
sudo groupadd -r -g 85 frrvt
sudo useradd -u 92 -g 92 -M -r -G frrvt -s /sbin/nologin \
- -c "FRR FreeRangeRouting suite" -d /var/run/frr frr
+ -c "FRR FRRouting suite" -d /var/run/frr frr
### Download Source, configure and compile it
(You may prefer different options on configure statement. These are just
diff --git a/doc/Building_FRR_on_Debian8.md b/doc/Building_FRR_on_Debian8.md
index 902f8c623..4335e7621 100644
--- a/doc/Building_FRR_on_Debian8.md
+++ b/doc/Building_FRR_on_Debian8.md
@@ -32,7 +32,7 @@ any packages**
sudo addgroup --system --gid 92 frr
sudo addgroup --system --gid 85 frrvty
sudo adduser --system --ingroup frr --groups frrvty --home /var/run/frr/ \
- --gecos "FRR FreeRangeRouting suite" --shell /bin/false frr
+ --gecos "FRR FRRouting suite" --shell /bin/false frr
sudo usermode
### Download Source, configure and compile it
diff --git a/doc/Building_FRR_on_Fedora24.md b/doc/Building_FRR_on_Fedora24.md
index 9617afc73..0afc5c676 100644
--- a/doc/Building_FRR_on_Fedora24.md
+++ b/doc/Building_FRR_on_Fedora24.md
@@ -21,7 +21,7 @@ using any packages**
sudo groupadd -g 92 frr
sudo groupadd -r -g 85 frrvt
sudo useradd -u 92 -g 92 -M -r -G frrvt -s /sbin/nologin \
- -c "FRR FreeRangeRouting suite" -d /var/run/frr frr
+ -c "FRR FRRouting suite" -d /var/run/frr frr
### Download Source, configure and compile it
(You may prefer different options on configure statement. These are just
diff --git a/lib/command.c b/lib/command.c
index 919e27ada..142636afc 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -3087,7 +3087,7 @@ DEFUN (show_version,
DEFUN (frr_version_defaults,
frr_version_defaults_cmd,
"frr (version|defaults) .LINE",
- "FreeRangeRouting global parameters\n"
+ "FRRouting global parameters\n"
"version configuration was written by\n"
"set of configuration defaults used\n"
"version string\n")
diff --git a/lib/version.h.in b/lib/version.h.in
index 6c78bd054..d9eabb9f8 100644
--- a/lib/version.h.in
+++ b/lib/version.h.in
@@ -39,7 +39,7 @@
#define FRR_SMUX_NAME "@PACKAGE_NAME@"
#define FRR_PTM_NAME "@PACKAGE_NAME@"
-#define FRR_FULL_NAME "FreeRangeRouting"
+#define FRR_FULL_NAME "FRRouting"
#define FRR_VERSION "@PACKAGE_VERSION@" GIT_SUFFIX
#define FRR_VER_SHORT "@PACKAGE_VERSION@"
#define FRR_BUG_ADDRESS "@PACKAGE_BUGREPORT@"
diff --git a/ospfd/ospf_dump_api.c b/ospfd/ospf_dump_api.c
index 20e7740d3..5ef262ce5 100644
--- a/ospfd/ospf_dump_api.c
+++ b/ospfd/ospf_dump_api.c
@@ -2,7 +2,7 @@
* OSPFd dump routine (parts used by ospfclient).
* Copyright (C) 1999, 2000 Toshiaki Takada
*
- * This file is part of FreeRangeRouting (FRR).
+ * This file is part of FRRouting (FRR).
*
* FRR is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/ospfd/ospf_dump_api.h b/ospfd/ospf_dump_api.h
index c3ff1e3f5..1cd8257f0 100644
--- a/ospfd/ospf_dump_api.h
+++ b/ospfd/ospf_dump_api.h
@@ -2,7 +2,7 @@
* OSPFd dump routine (parts used by ospfclient).
* Copyright (C) 1999 Toshiaki Takada
*
- * This file is part of FreeRangeRouting (FRR).
+ * This file is part of FRRouting (FRR).
*
* FRR is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
diff --git a/redhat/README.rpm_build.md b/redhat/README.rpm_build.md
index db3c7d45c..c266f3dc2 100644
--- a/redhat/README.rpm_build.md
+++ b/redhat/README.rpm_build.md
@@ -1,4 +1,4 @@
-Building your own FreeRangeRouting RPM
+Building your own FRRouting RPM
======================================
(Tested on CentOS 6, CentOS 7 and Fedora 22.)
diff --git a/redhat/frr.spec.in b/redhat/frr.spec.in
index c53e8459c..e0d8f697d 100644
--- a/redhat/frr.spec.in
+++ b/redhat/frr.spec.in
@@ -8,7 +8,7 @@
# rpms again and again on the same day, so the newer rpms can be installed.
# bumping the number each time.
-####################### FreeRangeRouting (FRR) configure options #########################
+####################### FRRouting (FRR) configure options #########################
# with-feature options
%{!?with_tcp_zebra: %global with_tcp_zebra 0 }
%{!?with_pam: %global with_pam 0 }
@@ -128,14 +128,14 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
Obsoletes: bird gated mrt zebra frr-sysvinit
%description
-FreeRangeRouting is a free software that manages TCP/IP based routing
+FRRouting is a free software that manages TCP/IP based routing
protocol. It takes multi-server and multi-thread approach to resolve
the current complexity of the Internet.
-FreeRangeRouting supports BGP4, OSPFv2, OSPFv3, ISIS, RIP, RIPng, PIM
+FRRouting supports BGP4, OSPFv2, OSPFv3, ISIS, RIP, RIPng, PIM
and LDP
-FreeRangeRouting is a fork of Quagga.
+FRRouting is a fork of Quagga.
%package contrib
Summary: contrib tools for frr
@@ -303,7 +303,7 @@ if getent group %frr_user >/dev/null; then : ; else \
fi
if getent passwd %frr_user >/dev/null ; then : ; else \
/usr/sbin/useradd -u %frr_uid -g %frr_gid \
- -M -r -s /sbin/nologin -c "FreeRangeRouting suite" \
+ -M -r -s /sbin/nologin -c "FRRouting suite" \
-d %_localstatedir %frr_user 2> /dev/null || : ; \
fi
%if 0%{?vty_group:1}
@@ -571,7 +571,7 @@ rm -rf %{buildroot}
%changelog
* Fri Jan 6 2017 Martin Winter <mwinter@opensourcerouting.org> - %{version}
-- Renamed to frr for FreeRangeRouting fork of Quagga
+- Renamed to frr for FRRouting fork of Quagga
* Thu Feb 11 2016 Paul Jakma <paul@jakma.org>
- remove with_ipv6 conditionals, always build v6
diff --git a/snapcraft/README.snap_build.md b/snapcraft/README.snap_build.md
index 341b210f7..b14b10b83 100644
--- a/snapcraft/README.snap_build.md
+++ b/snapcraft/README.snap_build.md
@@ -1,4 +1,4 @@
-Building your own FreeRangeRouting Snap
+Building your own FRRouting Snap
========================================
(Tested on Ubuntu 16.04 with Snap Version 2, does not work on Ubuntu 15.x
which uses earlier versions of snaps)
@@ -7,7 +7,7 @@ which uses earlier versions of snaps)
sudo apt-get install snapcraft
-2. Checkout FreeRangeRouting under a **unpriviledged** user account
+2. Checkout FRRouting under a **unpriviledged** user account
git clone https://github.com/freerangerouting/frr.git
cd frr
@@ -56,8 +56,8 @@ The Snap will be auto-started and running.
Operations
==========
-### FreeRangeRouting Daemons
-At this time, all FreeRangeRouting daemons are auto-started.
+### FRRouting Daemons
+At this time, all FRRouting daemons are auto-started.
A daemon can be stopped/started with (ie ospf6d)
@@ -69,7 +69,7 @@ or disabled/enabled with
systemctl disable snap.frr.ospf6d.service
systemctl enable snap.frr.ospf6d.service
-### FreeRangeRouting Commands
+### FRRouting Commands
All the commands are prefixed with frr.
frr.vtysh -> vtysh
diff --git a/snapcraft/README.usage.md b/snapcraft/README.usage.md
index 2d2b32b6b..a8d6bca76 100644
--- a/snapcraft/README.usage.md
+++ b/snapcraft/README.usage.md
@@ -1,14 +1,14 @@
-Using the FreeRangeRouting Snap
+Using the FRRouting Snap
===============================
After installing the Snap, the priviledged plug need to be connected:
snap connect frr:network-control ubuntu-core:network-control
-Enabling/Disabling FreeRangeRouting Daemons
+Enabling/Disabling FRRouting Daemons
-------------------------------------------
-By default (at this time), all FreeRangeRouting daemons will be enabled
+By default (at this time), all FRRouting daemons will be enabled
on installation. If you want to disable a specific daemon, then use
the systemctl commands
@@ -24,7 +24,7 @@ Commands defined by this snap
-----------------------------
- `frr.vtysh`:
- FreeRangeRouting VTY Shell (configuration tool)
+ FRRouting VTY Shell (configuration tool)
- `frr.version`:
Returns output of `zebra --version` to display version and configured
options
@@ -62,7 +62,7 @@ FAQ
Sourcecode available
====================
-The source for this SNAP is available as part of the FreeRangeRouting
+The source for this SNAP is available as part of the FRRouting
Source Code Distribution.
https://github.com/freerangerouting/frr.git
diff --git a/snapcraft/snapcraft.yaml.in b/snapcraft/snapcraft.yaml.in
index a703766f0..a20a1d039 100644
--- a/snapcraft/snapcraft.yaml.in
+++ b/snapcraft/snapcraft.yaml.in
@@ -1,11 +1,11 @@
name: frr
version: @VERSION@
-summary: FreeRangeRouting BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM/LDP routing daemon
+summary: FRRouting BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM/LDP routing daemon
description: BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM routing daemon
- FreeRangeRouting (FRR) is free software which manages TCP/IP based routing
+ FRRouting (FRR) is free software which manages TCP/IP based routing
protocols. It supports BGP4, BGP4+, OSPFv2, OSPFv3, IS-IS, RIPv1, RIPv2,
RIPng, PIM and LDP as well as the IPv6 versions of these.
- FreeRangeRouting (frr) is a fork of Quagga.
+ FRRouting (frr) is a fork of Quagga.
confinement: strict
grade: devel
diff --git a/solaris/README.txt b/solaris/README.txt
index 01f725b8f..589570d88 100644
--- a/solaris/README.txt
+++ b/solaris/README.txt
@@ -15,13 +15,13 @@ Requirements:
i.manifest must be at least version 1.5. Place these scripts in
this directory if you are using Solaris 10 GA (which does not ship with
- these scripts), or in the solaris/ directory in the FreeRangeRouting source.
+ these scripts), or in the solaris/ directory in the FRRouting source.
Package creation instructions:
------------------------------
-1. Configure and build FreeRangeRouting (frr) in the top level build directory as per normal, eg:
+1. Configure and build FRRouting (frr) in the top level build directory as per normal, eg:
./configure --prefix=/usr/local/frr \
--localstatedir=/var/run/frr \
@@ -102,7 +102,7 @@ Install and post-install configuration notes:
# # svcs -l ripd
fmri svc:/network/routing/frr:ripd
- name FreeRangeRouting: ripd, RIPv1/2 IPv4 routing protocol daemon.
+ name FRRouting: ripd, RIPv1/2 IPv4 routing protocol daemon.
enabled true
state online
next_state none
@@ -117,7 +117,7 @@ Install and post-install configuration notes:
- Configuration of startup options is by way of SMF properties in a
property group named 'frr'. The defaults should automatically be
- inline with how you configured FreeRangeRouting in Step 1 above.
+ inline with how you configured FRRouting in Step 1 above.
- By default the VTY interface is disabled. To change this, see below for
how to set the 'frr/vty_port' property as appropriate for
@@ -176,11 +176,11 @@ Install and post-install configuration notes:
- As SMF is dependency aware, restarting network/zebra will restart all the
other daemons.
- - To upgrade from one set of FreeRangeRouting packages to a newer release,
+ - To upgrade from one set of FRRouting packages to a newer release,
one must first pkgrm the installed packages. When one pkgrm's FRRsmf all
property configuration will be lost, and any customisations will have to
redone after installing the updated FRRsmf package.
- These packages are not supported by Sun Microsystems, report bugs via the
- usual FreeRangeRouting channels, ie Issue Tracker. Improvements/contributions of course would be greatly appreciated.
+ usual FRRouting channels, ie Issue Tracker. Improvements/contributions of course would be greatly appreciated.
diff --git a/solaris/depend.daemons.in b/solaris/depend.daemons.in
index 64fb03ac1..a8ce943e3 100644
--- a/solaris/depend.daemons.in
+++ b/solaris/depend.daemons.in
@@ -1,4 +1,4 @@
-P FRRlibs FreeRangeRouting common runtime libraries
+P FRRlibs FRRouting common runtime libraries
@PACKAGE_VERSION@,REV=@CONFDATE@
P SUNWcsu Core Solaris, (Usr)
P SUNWcsr Core Solaris Libraries (Root)
diff --git a/solaris/depend.dev.in b/solaris/depend.dev.in
index 5d8bf16ed..1b65724a0 100644
--- a/solaris/depend.dev.in
+++ b/solaris/depend.dev.in
@@ -1,2 +1,2 @@
-P FRRlibs FreeRangeRouting common runtime libraries
+P FRRlibs FRRouting common runtime libraries
@PACKAGE_VERSION@,REV=@CONFDATE@
diff --git a/solaris/depend.libs.in b/solaris/depend.libs.in
index 6ead0b286..04f04efd0 100644
--- a/solaris/depend.libs.in
+++ b/solaris/depend.libs.in
@@ -1,5 +1,5 @@
P SUNWcslr Core Solaris Libraries (Root)
P SUNWcsl Core Solaris, (Shared Libs)
P SUNWlibmsr Math & Microtasking Libraries (Root)
-R FRRdaemons FreeRangeRouting daemons
+R FRRdaemons FRRouting daemons
R FRRdev
diff --git a/solaris/depend.smf.in b/solaris/depend.smf.in
index 66b11eba2..b3b1bd778 100644
--- a/solaris/depend.smf.in
+++ b/solaris/depend.smf.in
@@ -1,4 +1,4 @@
-P FRRaemons FreeRangeRouting daemons
+P FRRaemons FRRouting daemons
@PACKAGE_VERSION@,REV=@CONFDATE@
P SUNWcsu Core Solaris, (Usr)
P SUNWcsr Core Solaris Libraries (Root)
diff --git a/solaris/frr.init.in b/solaris/frr.init.in
index 580fd9b35..bd9ab85e6 100755
--- a/solaris/frr.init.in
+++ b/solaris/frr.init.in
@@ -3,20 +3,20 @@
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-# This file is part of FreeRangeRouting.
+# This file is part of FRRouting.
#
-# FreeRangeRouting is free software; you can redistribute it and/or modify
+# FRRouting is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version.
#
-# FreeRangeRouting is distributed in the hope that it will be useful, but
+# FRRouting is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with FreeRangeRouting; see the file COPYING. If not, write to
+# along with FRRouting; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
@@ -74,7 +74,7 @@ handle_routeadm_upgrade () {
upgrade_config () {
DAEMON=$1
- # handle upgrade of SUNWzebra to FreeRangeRouting
+ # handle upgrade of SUNWzebra to FRRouting
if [ -d "/etc/frr" -a ! -f "/etc/frr/${DAEMON}.conf" ] ; then
if [ -f "/etc/sfw/zebra/${DAEMON}.conf" ] ; then
cp "/etc/sfw/zebra/${DAEMON}.conf" \
@@ -216,7 +216,7 @@ case "${DAEMON}" in
;;
esac
-# Older FreeRangeRouting SMF packages pass daemon args on the commandline
+# Older FRRouting SMF packages pass daemon args on the commandline
# Newer SMF routeadm model uses properties for each argument
# so we must handle that.
if [ smf_present -a -f "$ROUTEADMINCLUDE" ]; then
diff --git a/solaris/frr.xml.in b/solaris/frr.xml.in
index 5ac7e5272..825c987a4 100644
--- a/solaris/frr.xml.in
+++ b/solaris/frr.xml.in
@@ -1,20 +1,20 @@
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
- This file is part of FreeRangeRouting (FRR)
+ This file is part of FRRouting (FRR)
- FreeRangeRouting is free software; you can redistribute it and/or
+ FRRouting is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or
(at your option) anylater version.
- FreeRangeRouting is distributed in the hope that it will be useful,
+ FRRouting is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
- along with FreeRangeRouting; see the file COPYING. If not, write to
+ along with FRRouting; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
@@ -107,9 +107,9 @@
<propval name='value_authorization' type='astring'
value='solaris.smf.value.routing' />
- <!-- Options common to FreeRangeRouting daemons
+ <!-- Options common to FRRouting daemons
Property names are equivalent to the long
- option name, consult FreeRangeRouting documentation -->
+ option name, consult FRRouting documentation -->
<!-- The config file to use, if not the default -->
<propval name='config_file' type='astring' value=''/>
<!-- The vty_port to listen on if not the default.
@@ -142,7 +142,7 @@
<template>
<common_name>
<loctext xml:lang='C'>
- FreeRangeRouting: zebra, RIB, kernel intermediary and misc daemon
+ FRRouting: zebra, RIB, kernel intermediary and misc daemon
</loctext>
</common_name>
<documentation>
@@ -240,7 +240,7 @@
<propval name='value_authorization' type='astring'
value='solaris.smf.value.routing' />
- <!-- Options common to FreeRangeRouting daemons -->
+ <!-- Options common to FRRouting daemons -->
<!-- The config file to use, if not the default -->
<propval name='config_file' type='astring' value=''/>
<!-- The vty_port to listen on if not the default.
@@ -273,7 +273,7 @@
<template>
<common_name>
<loctext xml:lang='C'>
- FreeRangeRouting: ripd, RIPv1/2 IPv4 routing protocol daemon.
+ FRRouting: ripd, RIPv1/2 IPv4 routing protocol daemon.
</loctext>
</common_name>
<documentation>
diff --git a/tests/helpers/python/frrtest.py b/tests/helpers/python/frrtest.py
index 21944bcf9..a7ef1c56b 100644
--- a/tests/helpers/python/frrtest.py
+++ b/tests/helpers/python/frrtest.py
@@ -4,7 +4,7 @@
# Copyright (C) 2017 by David Lamparter & Christian Franke,
# Open Source Routing / NetDEF Inc.
#
-# This file is part of FreeRangeRouting (FRR)
+# This file is part of FRRouting (FRR)
#
# FRR is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the