diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2022-01-19 18:19:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 23:19:45 +0000 |
commit | a4fc3def45320e633a773f2efa453c78d3b4afca (patch) | |
tree | 641aa4561fdb891513979d7794db888685209178 /docs | |
parent | be096e94d2904dd5743abde26253b86fa79f26bb (diff) | |
download | vyos.vyos-a4fc3def45320e633a773f2efa453c78d3b4afca.tar.gz vyos.vyos-a4fc3def45320e633a773f2efa453c78d3b4afca.zip |
Enable configuring ntp server pool in ntp_global (#225)
Enable configuring ntp server pool in ntp_global
Signed-off-by: GomathiselviS gomathiselvi@gmail.com
SUMMARY
Fixes #221
ISSUE TYPE
Bugfix Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION
Reviewed-by: Shawn Wilsher <None>
Reviewed-by: None <None>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/vyos.vyos.vyos_ntp_global_module.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/vyos.vyos.vyos_ntp_global_module.rst b/docs/vyos.vyos.vyos_ntp_global_module.rst index 7f27493c..18f0ece8 100644 --- a/docs/vyos.vyos.vyos_ntp_global_module.rst +++ b/docs/vyos.vyos.vyos_ntp_global_module.rst @@ -117,6 +117,7 @@ Parameters <li>dynamic</li> <li>preempt</li> <li>prefer</li> + <li>pool</li> </ul> </td> <td> @@ -749,7 +750,7 @@ Examples # # Task # # ------------- - - name: Gather ntp config + - name: Render ntp config vyos.vyos.vyos_ntp_global: config: allow_clients: @@ -764,6 +765,7 @@ Examples options: - noselect - prefer + - pool - server: time1.vyos.net - server: time2.vyos.net @@ -782,6 +784,7 @@ Examples # "set system ntp server server7", # "set system ntp server server45 noselect", # "set system ntp server server45 prefer", + # "set system ntp server server45 pool", # "set system ntp server time1.vyos.net", # "set system ntp server time2.vyos.net", # "set system ntp server time3.vyos.net" |