Skip to content

Commit

Permalink
setting the correct defaults
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Herfert <herfik>
  • Loading branch information
Tomas Herfert committed Nov 10, 2022
1 parent 52fbfaa commit 2013787
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1487,9 +1487,9 @@ def join_path(path):
'primary-ntp': KeyInfo(default='0.0.0.0'),
'secondary-ntp': KeyInfo(default='0.0.0.0'),
'server-dns-names': KeyInfo(default=''),
'servers': KeyInfo(),
'mode': KeyInfo(),
'vrf': KeyInfo(),
'servers': KeyInfo(default=''),
'mode': KeyInfo(default='unicast'),
'vrf': KeyInfo(default='main'),
},
),
('system', 'ntp', 'client', 'servers'): APIData(
Expand All @@ -1499,10 +1499,10 @@ def join_path(path):
'comment': KeyInfo(can_disable=True, remove_value=''),
'disabled': KeyInfo(default=False),
'address': KeyInfo(),
'auth-key': KeyInfo(),
'iburst': KeyInfo(),
'max-poll': KeyInfo(),
'min-poll': KeyInfo(),
'auth-key': KeyInfo(default='none'),
'iburst': KeyInfo(default=True),
'max-poll': KeyInfo(default=10),
'min-poll': KeyInfo(default=6),
},
),
('system', 'ntp', 'server'): APIData(
Expand Down

0 comments on commit 2013787

Please sign in to comment.