You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixes#17906
To fix NTP config generation from the minigraph and save backward compatability
Align `ntp.conf.j2` template to generate config out of empty `NTP_SERVER` DB configuration
Out of that NTP_SERVER configuration:
```json
{
"10.210.25.32": {},
"10.75.202.2": {}
}
```
The next config in `ntp.conf` file should be produced:
```
server 10.210.25.32
restrict 10.210.25.32 kod limited nomodify notrap noquery nopeer
server 10.75.202.2
restrict 10.75.202.2 kod limited nomodify notrap noquery nopeer
```
Signed-off-by: Yevhen Fastiuk <[email protected]>
0 commit comments