[Pkg-utopia-commits] r3509 - in /packages/unstable/networkmanager/debian: changelog patches/05-ifupdown-allow-hotplug-autoconnect.patch patches/series
biebl at users.alioth.debian.org
biebl at users.alioth.debian.org
Mon Feb 8 15:37:33 UTC 2010
Author: biebl
Date: Mon Feb 8 15:37:32 2010
New Revision: 3509
URL: http://svn.debian.org/wsvn/pkg-utopia/?sc=1&rev=3509
Log:
* debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
- Set autoconnect=true for devices marked as allow-hotplug in
/etc/network/interfaces. (Closes: #568784)
Added:
packages/unstable/networkmanager/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
Modified:
packages/unstable/networkmanager/debian/changelog
packages/unstable/networkmanager/debian/patches/series
Modified: packages/unstable/networkmanager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/changelog?rev=3509&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/changelog (original)
+++ packages/unstable/networkmanager/debian/changelog Mon Feb 8 15:37:32 2010
@@ -8,6 +8,9 @@
* debian/patches/04-etc-hosts-rewrite.patch
- Be more selective when adding hostname to /etc/hosts.
Patch pulled from upstream Git. (Closes: #567411)
+ * debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
+ - Set autoconnect=true for devices marked as allow-hotplug in
+ /etc/network/interfaces. (Closes: #568784)
* debian/control
- Remove Riccardo from Uploaders with Riccardo's consent.
- Bump Breaks for network-manager-kde to (<< 1:0.9~~). The KDE3 version no
Added: packages/unstable/networkmanager/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch?rev=3509&op=file
==============================================================================
--- packages/unstable/networkmanager/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch (added)
+++ packages/unstable/networkmanager/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch Mon Feb 8 15:37:32 2010
@@ -1,0 +1,13 @@
+Index: NetworkManager-0.7.999/system-settings/plugins/ifupdown/plugin.c
+===================================================================
+--- NetworkManager-0.7.999.orig/system-settings/plugins/ifupdown/plugin.c 2010-02-08 16:07:48.379559508 +0100
++++ NetworkManager-0.7.999/system-settings/plugins/ifupdown/plugin.c 2010-02-08 16:08:04.255557965 +0100
+@@ -355,7 +355,7 @@
+ ifparser_init ();
+ block = ifparser_getfirst ();
+ while (block) {
+- if(!strcmp ("auto", block->type))
++ if(!strcmp ("auto", block->type) || !strcmp ("allow-hotplug", block->type))
+ g_hash_table_insert (auto_ifaces, block->name, GUINT_TO_POINTER (1));
+ else if (!strcmp ("iface", block->type) && strcmp ("lo", block->name)) {
+ NMIfupdownConnection *exported;
Modified: packages/unstable/networkmanager/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/networkmanager/debian/patches/series?rev=3509&op=diff
==============================================================================
--- packages/unstable/networkmanager/debian/patches/series (original)
+++ packages/unstable/networkmanager/debian/patches/series Mon Feb 8 15:37:32 2010
@@ -1,4 +1,4 @@
02-dbus_access_network_manager.patch
03-hostname-fallback.patch
04-etc-hosts-rewrite.patch
-#20-manual_means_always_online.patch
+05-ifupdown-allow-hotplug-autoconnect.patch
More information about the Pkg-utopia-commits
mailing list