diff options
author | Quentin Young <qlyoung@nvidia.com> | 2021-09-14 19:14:25 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-28 16:10:33 +0200 |
commit | f887c00ad48cf1d125b3bfed884e96d0a0125d93 (patch) | |
tree | 2d1d9ab1286084f2d0367d863ed8de8979a08baf /doc | |
parent | Merge pull request #13119 from mjstapp/fix_mgmt_proto_makefile (diff) | |
download | frr-f887c00ad48cf1d125b3bfed884e96d0a0125d93.tar.xz frr-f887c00ad48cf1d125b3bfed884e96d0a0125d93.zip |
vtysh: fork() on boot
When using -b flag to apply config to all running daemons, fork a copy
of vtysh for each daemon we need to configure instead of doing them one
at a time. This is about N times faster when you have N daemons.
Signed-off-by: Quentin Young <qlyoung@nvidia.com>
mergeme
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manpages/vtysh.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/manpages/vtysh.rst b/doc/manpages/vtysh.rst index af527bea4..94ba3baeb 100644 --- a/doc/manpages/vtysh.rst +++ b/doc/manpages/vtysh.rst @@ -67,6 +67,11 @@ OPTIONS available for the vtysh command: Display a usage message on standard output and exit. +.. option:: --no-fork + + When used in conjunction with ``-b``, prevents vtysh from forking children to handle configuring each target daemon. + + ENVIRONMENT VARIABLES ===================== VTYSH_PAGER |