Your message dated Thu, 10 Jul 2014 18:54:12 +0200
with message-id <[email protected]>
and subject line Re: [Pkg-utopia-maintainers] Bug#701479: Bug#701479:
network-manager: add ifupdown's source keyword support
has caused the Debian Bug report #701479,
regarding network-manager: add ifupdown's source keyword support
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
701479: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701479
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: network-manager
Severity: normal
Tags: patch
Please apply the patch attached.
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 3.6-trunk-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash
--- a/src/settings/plugins/ifupdown/interface_parser.c
+++ b/src/settings/plugins/ifupdown/interface_parser.c
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <wordexp.h>
#include "nm-utils.h"
if_block* first;
@@ -211,6 +212,25 @@
add_block(token[0], token[i]);
skip_to_block = 0;
}
+ else if (strcmp(token[0], "source") == 0) {
+ wordexp_t p;
+ char ** w;
+ size_t i;
+ const char * rest = join_values_with_spaces(value, token + 1);
+ int fail = wordexp(rest, &p, WRDE_NOCMD);
+ if (!fail)
+ {
+ w = p.we_wordv;
+ for (i = 0; i < p.we_wordc; i++)
+ {
+ ifparser_init(w[i], quiet);
+ }
+ wordfree(&p);
+ } else {
+ g_message ("Error: failed to match files using %s\n",
+ rest);
+ }
+ }
else {
if (skip_to_block) {
if (!quiet) {
--- End Message ---
--- Begin Message ---
Version: 0.9.10.0-1
Am 02.04.2014 01:12, schrieb Michael Biebl:
> Hi,
>
> Am 23.02.2013 18:26, schrieb Andrew Shadura:
>> Source: network-manager
>> Severity: normal
>> Tags: patch
>>
>> Please apply the patch attached.
>
> Please see
> https://bugzilla.gnome.org/show_bug.cgi?id=707276
>
> http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=48ed1abca77195ed9b36645593733da143e3be3f
>
> http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?id=4e09b87d5404580ec5a75234fe48d4c6137c4e40
>
> Does that address your request sufficiently?
These commits are now part of 0.9.10.0 which I uploaded today.
So I'm marking this bug as fixed.
Michael
--
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?
signature.asc
Description: OpenPGP digital signature
--- End Message ---