summaryrefslogtreecommitdiff
path: root/tools/frr-reload.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/frr-reload.py')
-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 1cad55ac34..2dbc60d1f4 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'])