summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-02-07 19:44:09 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-02-07 19:44:09 +0100
commit0dca233ec09c61b25ccb0cf3181c8f2e85e687e6 (patch)
tree4e2c809621731c491f9bde413b42aed3c81e0045 /tools
parentMerge pull request #176 from opensourcerouting/mtype-underflow-backtrace (diff)
downloadfrr-0dca233ec09c61b25ccb0cf3181c8f2e85e687e6.tar.xz
frr-0dca233ec09c61b25ccb0cf3181c8f2e85e687e6.zip
*: Found some instances of Quagga.conf
Cleanup Quagga.conf -> Frr.conf Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/frr-reload.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py
index 1cad55ac3..2dbc60d1f 100755
--- a/tools/frr-reload.py
+++ b/tools/frr-reload.py
@@ -859,7 +859,7 @@ if __name__ == '__main__':
parser.add_argument('--debug', action='store_true', help='Enable debugs', default=False)
parser.add_argument('--stdout', action='store_true', help='Log to STDOUT', default=False)
parser.add_argument('filename', help='Location of new frr config file')
- parser.add_argument('--overwrite', action='store_true', help='Overwrite Quagga.conf with running config output', default=False)
+ parser.add_argument('--overwrite', action='store_true', help='Overwrite Frr.conf with running config output', default=False)
args = parser.parse_args()
# Logging
@@ -1068,5 +1068,5 @@ if __name__ == '__main__':
os.unlink(filename)
# Make these changes persistent
- if args.overwrite or args.filename != '/etc/quagga/Quagga.conf':
+ if args.overwrite or args.filename != '/etc/frr/Frr.conf':
subprocess.call(['/usr/bin/vtysh', '-c', 'write'])