mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-07 13:45:06 -05:00
cmdmon: don't require bound UDP socket
Don't abort on start when no UDP socket could be opened/bound for cmdmon. The Unix socket is more important and with the IP_FREEBIND option this case was not caught anyway.
This commit is contained in:
8
cmdmon.c
8
cmdmon.c
@@ -313,14 +313,6 @@ CAM_Initialise(int family)
|
|||||||
sock_fd6 = -1;
|
sock_fd6 = -1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (port_number && sock_fd4 < 0
|
|
||||||
#ifdef FEAT_IPV6
|
|
||||||
&& sock_fd6 < 0
|
|
||||||
#endif
|
|
||||||
) {
|
|
||||||
LOG_FATAL("Could not open any command socket");
|
|
||||||
}
|
|
||||||
|
|
||||||
access_auth_table = ADF_CreateTable();
|
access_auth_table = ADF_CreateTable();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user