Merge pull request #920 from kernelkit/fix-storing-to-startup

Fix issue with storing authorized SSH key to startup
This commit is contained in:
Mattias Walström
2025-01-30 18:26:18 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -27,6 +27,7 @@ All notable changes to the project are documented in this file.
### Fixes
- Fix #861: Fix error when running 251+ reconfigurations in test-mode
- Fix #777: Authorized SSH key not applied to startup config
- Minor cleanup of Networking Guide
- Fix memory leaks in confd
- Fix #869: Setup of bridges is now more robust
+1 -1
View File
@@ -1761,7 +1761,7 @@ int ietf_system_init(struct confd *confd)
os_init();
REGISTER_CHANGE(confd->session, "ietf-system", XPATH_AUTH_, SR_SUBSCR_UPDATE, change_auth, confd, &confd->sub);
REGISTER_CHANGE(confd->session, "ietf-system", XPATH_AUTH_, 0, change_auth, confd, &confd->sub);
REGISTER_OPER(confd->session, "ietf-system", PASSWORD_PATH, auth_cb, confd, 0, &confd->sub);
REGISTER_MONITOR(confd->session, "ietf-netconf-acm", "/ietf-netconf-acm:nacm//.",
0, change_nacm, confd, &confd->sub);