From a4fc3def45320e633a773f2efa453c78d3b4afca Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Wed, 19 Jan 2022 18:19:45 -0500 Subject: 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 Reviewed-by: None --- plugins/module_utils/network/vyos/argspec/ntp_global/ntp_global.py | 1 + plugins/module_utils/network/vyos/rm_templates/ntp_global.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/module_utils') diff --git a/plugins/module_utils/network/vyos/argspec/ntp_global/ntp_global.py b/plugins/module_utils/network/vyos/argspec/ntp_global/ntp_global.py index 63262154..7ace5bb7 100644 --- a/plugins/module_utils/network/vyos/argspec/ntp_global/ntp_global.py +++ b/plugins/module_utils/network/vyos/argspec/ntp_global/ntp_global.py @@ -47,6 +47,7 @@ class Ntp_globalArgs(object): # pylint: disable=R0903 "choices": [ "noselect", "dynamic", + "pool", "preempt", "prefer", ], diff --git a/plugins/module_utils/network/vyos/rm_templates/ntp_global.py b/plugins/module_utils/network/vyos/rm_templates/ntp_global.py index ac0bcbbf..f4589a29 100644 --- a/plugins/module_utils/network/vyos/rm_templates/ntp_global.py +++ b/plugins/module_utils/network/vyos/rm_templates/ntp_global.py @@ -112,7 +112,7 @@ class NtpTemplate(NetworkTemplate): r""" ^set\ssystem\sntp\sserver \s(?P\S+) - \s(?Pnoselect|dynamic|preempt|prefer)? + \s(?Pnoselect|dynamic|pool|preempt|prefer)? $""", re.VERBOSE), "setval": "system ntp server {{server}} {{options}}", -- cgit v1.2.3