Codebase list netcfg / 6dcb354
Import Debian version 1.143 netcfg (1.143) unstable; urgency=medium * Stop queueing rdnssd's installation with IPv6 setups. This component conflicts with network-manager and installing it from the network configuration step might prevents large parts of desktop environments from being installed. This isn't a perfect solution but this should be way better than the current status quo (Closes: #854801). netcfg (1.142) unstable; urgency=medium * IPv6 autoconfiguration: fix NTP server name handling, which would be stored as the DHCP-provided hostname, with many thanks to Malcolm Scott for the bug report and the patch (Closes: #862745). Cyril Brulebois authored 6 years ago Sophie Brun committed 6 years ago
2 changed file(s) with 20 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
346346 ns_idx++;
347347 } else if (!strncmp("NTP server[", l, 11) && ntp_idx < NETCFG_NTPSERVERS_MAX) {
348348 p = strstr(l, "] ") + 2;
349 strncpy(interface->ntp_servers[ns_idx++], p, sizeof(interface->ntp_servers[ntp_idx]));
349 strncpy(interface->ntp_servers[ntp_idx], p, sizeof(interface->ntp_servers[ntp_idx]));
350350 ntp_idx++;
351351 } else if (!strncmp("Domain search list[0] ", l, 21)) {
352352 p = strstr(l, "] ") + 2;
469469 if (ipv6) {
470470 read_rdnssd_nameservers(interface);
471471 if (nameserver_count(interface) > 0) {
472 di_exec_shell_log("apt-install rdnssd");
472 di_debug("Not queueing rdnssd installation to make sure not to interfere with network-manager");
473473 }
474474 }
475475
0 netcfg (1.143) unstable; urgency=medium
1
2 * Stop queueing rdnssd's installation with IPv6 setups. This component
3 conflicts with network-manager and installing it from the network
4 configuration step might prevents large parts of desktop environments
5 from being installed. This isn't a perfect solution but this should be
6 way better than the current status quo (Closes: #854801).
7
8 -- Cyril Brulebois <[email protected]> Fri, 26 May 2017 18:55:29 +0200
9
10 netcfg (1.142) unstable; urgency=medium
11
12 * IPv6 autoconfiguration: fix NTP server name handling, which would be
13 stored as the DHCP-provided hostname, with many thanks to Malcolm
14 Scott for the bug report and the patch (Closes: #862745).
15
16 -- Cyril Brulebois <[email protected]> Wed, 17 May 2017 00:06:51 +0200
17
018 netcfg (1.141) unstable; urgency=medium
119
220 [ Samuel Thibault ]