- Fix parsing of DOMAIN in ifcfg files (rh #459370)
- Fix reconnection to mobile broadband networks after an auth failure - Fix recognition of timeouts of PPP during mobile broadband connection - More compatible connection sharing (rh #458625) - Fix DHCP in minimal environments without glibc locale information installed - Add support for Option mobile broadband devices (like iCON 225 and iCON 7.2) - Add IP4 config information to dispatcher script environment - Merge WEP ASCII and Hex key types for cleaner UI - Pre-fill PPPoE password when authentication fails - Fixed some changes not getting saved in the connection editor - Accept both prefix and netmask in the conection editor's IPv4 page
This commit is contained in:
parent
2031bfe40f
commit
716eed3a51
@ -9,8 +9,8 @@ ExcludeArch: s390 s390x
|
||||
%define libnl_version 1.1
|
||||
%define ppp_version 2.2.4
|
||||
|
||||
%define snapshot svn3930
|
||||
%define applet_snapshot svn838
|
||||
%define snapshot svn4022
|
||||
%define applet_snapshot svn870
|
||||
|
||||
Name: NetworkManager
|
||||
Summary: Network connection manager and user applications
|
||||
@ -45,8 +45,9 @@ Obsoletes: dhcdbd
|
||||
# Due to VPN auth-dialog changes in applet r662
|
||||
# Due to using prefixes instead of netmasks in NM > r3812
|
||||
# Due to consolidation of vpn + vpn-properties settings in NM >= r3927
|
||||
Conflicts: NetworkManager-vpnc < 1:0.7.0-0.10.svn3927
|
||||
Conflicts: NetworkManager-openvpn < 1:0.7.0-15.svn3927
|
||||
# Due to UUID changes in NM >= 4013
|
||||
Conflicts: NetworkManager-vpnc < 1:0.7.0-0.10.svn4022
|
||||
Conflicts: NetworkManager-openvpn < 1:0.7.0-15.svn4022
|
||||
|
||||
BuildRequires: dbus-devel >= %{dbus_version}
|
||||
BuildRequires: dbus-glib-devel >= %{dbus_glib_version}
|
||||
@ -295,8 +296,23 @@ fi
|
||||
%{_libdir}/libnm_glib.so
|
||||
%{_libdir}/libnm_glib_vpn.so
|
||||
%{_libdir}/libnm-util.so
|
||||
%dir %{_datadir}/gtk-doc/html/libnm-glib
|
||||
%{_datadir}/gtk-doc/html/libnm-glib/
|
||||
|
||||
%changelog
|
||||
* Wed Aug 27 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.11.svn4022
|
||||
- Fix parsing of DOMAIN in ifcfg files (rh #459370)
|
||||
- Fix reconnection to mobile broadband networks after an auth failure
|
||||
- Fix recognition of timeouts of PPP during mobile broadband connection
|
||||
- More compatible connection sharing (rh #458625)
|
||||
- Fix DHCP in minimal environments without glibc locale information installed
|
||||
- Add support for Option mobile broadband devices (like iCON 225 and iCON 7.2)
|
||||
- Add IP4 config information to dispatcher script environment
|
||||
- Merge WEP ASCII and Hex key types for cleaner UI
|
||||
- Pre-fill PPPoE password when authentication fails
|
||||
- Fixed some changes not getting saved in the connection editor
|
||||
- Accept both prefix and netmask in the conection editor's IPv4 page
|
||||
|
||||
* Mon Aug 11 2008 Dan Williams <dcbw@redhat.com> - 1:0.7.0-0.11.svn3930
|
||||
- Fix issue with mobile broadband connections that don't require authentication
|
||||
|
||||
|
@ -1,22 +1,27 @@
|
||||
diff -up NetworkManager-0.7.0/src/named-manager/nm-named-manager.c.explain-dns1-dns2 NetworkManager-0.7.0/src/named-manager/nm-named-manager.c
|
||||
--- NetworkManager-0.7.0/src/named-manager/nm-named-manager.c.explain-dns1-dns2 2008-05-30 14:39:45.000000000 -0400
|
||||
+++ NetworkManager-0.7.0/src/named-manager/nm-named-manager.c 2008-06-11 08:54:34.000000000 -0400
|
||||
@@ -268,6 +268,18 @@ rewrite_resolv_conf (NMNamedManager *mgr
|
||||
--- NetworkManager-0.7.0/src/named-manager/nm-named-manager.c.explain-dns1-dns2 2008-08-27 13:20:27.000000000 -0400
|
||||
+++ NetworkManager-0.7.0/src/named-manager/nm-named-manager.c 2008-08-27 16:02:31.000000000 -0400
|
||||
@@ -236,7 +236,7 @@ update_resolv_conf (const char *iface,
|
||||
g_free (tmp_str);
|
||||
}
|
||||
|
||||
/* Using glibc resolver */
|
||||
nameservers = compute_nameservers (composite);
|
||||
+
|
||||
+ if (!nameservers || !strlen (nameservers)) {
|
||||
+ g_free (nameservers);
|
||||
+ nameservers = g_strdup_printf ("\n\n%s%s%s%s%s%s",
|
||||
- if (nameservers) {
|
||||
+ if (nameservers && g_strv_length (nameservers)) {
|
||||
GString *str;
|
||||
int num;
|
||||
int i;
|
||||
@@ -259,6 +259,14 @@ update_resolv_conf (const char *iface,
|
||||
}
|
||||
|
||||
nameservers_str = g_string_free (str, FALSE);
|
||||
+ } else {
|
||||
+ nameservers_str = g_strdup_printf ("\n\n%s%s%s%s%s%s",
|
||||
+ "# No nameservers found; try putting DNS servers into your\n",
|
||||
+ "# ifcfg files in /etc/sysconfig/network-scripts like so:\n",
|
||||
+ "#\n",
|
||||
+ "# DNS1=xxx.xxx.xxx.xxx\n",
|
||||
+ "# DNS2=xxx.xxx.xxx.xxx\n",
|
||||
+ "# SEARCH=lab.foo.com bar.foo.com\n");
|
||||
+ }
|
||||
+
|
||||
+ "# DOMAIN=lab.foo.com bar.foo.com\n");
|
||||
}
|
||||
|
||||
if (fprintf (f, "%s%s%s\n",
|
||||
domain ? domain : "",
|
||||
searches ? searches : "",
|
||||
|
Loading…
Reference in New Issue
Block a user