commit 4f6bf13c6b1b46b405a7f093a1bc52bf247afb9d from: Stefan Sperling via: Thomas Adam date: Mon Jun 23 17:28:03 2025 UTC always consume authorized keys messages in gotsys-userkeys THe main process will always send these messages so don't skip parsing them even if we are going to ignore the current user. commit - 8a03603b8f1458ba1e8c2f2ed9bd0363e8601603 commit + 4f6bf13c6b1b46b405a7f093a1bc52bf247afb9d blob - c9e9a874a6286e80ec50700f5675c62522684b32 blob + 49f4229d8d8f2b1ba74e21017e3092bf0064b9f7 --- gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c +++ gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c @@ -173,8 +173,6 @@ dispatch_event(int fd, short event, void *arg) switch (imsg.hdr.type) { case GOTSYSD_IMSG_SYSCONF_INSTALL_AUTHORIZED_KEYS: - if (ignore_user) - break; err = gotsys_imsg_recv_authorized_keys(&imsg, &authorized_keys); break;