From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- .../20120426/ad606d76/attachment-0001.html | 9 ++++++ .../attachments/20120426/ad606d76/attachment.html | 9 ++++++ .../20120426/b363f785/attachment-0001.html | 12 ++++++++ .../attachments/20120426/b363f785/attachment.html | 12 ++++++++ .../20120426/c17a395f/attachment-0001.ksh | 36 ++++++++++++++++++++++ .../attachments/20120426/c17a395f/attachment.ksh | 36 ++++++++++++++++++++++ 6 files changed, 114 insertions(+) create mode 100644 zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment-0001.html create mode 100644 zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment.html create mode 100644 zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment-0001.ksh create mode 100644 zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment.ksh (limited to 'zarb-ml/mageia-dev/attachments/20120426') diff --git a/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment-0001.html new file mode 100644 index 000000000..1e7ff24d5 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment-0001.html @@ -0,0 +1,9 @@ +

Ping
+Le 25 avr. 2012 08:26, "John Balcaen" <mikala@mageia.org> a écrit :
+>
+> Could you please push knetworkmanager ?
+> This new version fix a missing requires for the openconnect module ( mga #5601 )
+>
+> Regards,
+>

+

Ping?

diff --git a/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment.html b/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment.html new file mode 100644 index 000000000..1e7ff24d5 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/ad606d76/attachment.html @@ -0,0 +1,9 @@ +

Ping
+Le 25 avr. 2012 08:26, "John Balcaen" <mikala@mageia.org> a écrit :
+>
+> Could you please push knetworkmanager ?
+> This new version fix a missing requires for the openconnect module ( mga #5601 )
+>
+> Regards,
+>

+

Ping?

diff --git a/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment-0001.html new file mode 100644 index 000000000..1f1e35145 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment-0001.html @@ -0,0 +1,12 @@ +
2012/4/26 simple w8 <simplew8@gmail.com>
+2012/4/26 Thomas Backlund <tmb@mageia.org>:
+
> simple w8 skrev 26.4.2012 08:33:
+>
+>> Hi,
+>>
+>> Since kernel-3.3.3 was installed and every time i run it, the machine
+>> detects much less wifi networks that running any other kernel.
+>> Some is limiting the wifi antenna with this kernel-3.3.3.
+>
+>

I have had the same problem,  draknetcenter was configured with a wrong contry. I change this and everything went in order.

-> go to draknetcenter, then advanced parameter and change your country.
+
diff --git a/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment.html b/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment.html new file mode 100644 index 000000000..1f1e35145 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/b363f785/attachment.html @@ -0,0 +1,12 @@ +
2012/4/26 simple w8 <simplew8@gmail.com>
+2012/4/26 Thomas Backlund <tmb@mageia.org>:
+
> simple w8 skrev 26.4.2012 08:33:
+>
+>> Hi,
+>>
+>> Since kernel-3.3.3 was installed and every time i run it, the machine
+>> detects much less wifi networks that running any other kernel.
+>> Some is limiting the wifi antenna with this kernel-3.3.3.
+>
+>

I have had the same problem,  draknetcenter was configured with a wrong contry. I change this and everything went in order.

-> go to draknetcenter, then advanced parameter and change your country.
+
diff --git a/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment-0001.ksh b/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment-0001.ksh new file mode 100644 index 000000000..0cf3733b7 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment-0001.ksh @@ -0,0 +1,36 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +my $version; + +# Given a list of filenames on the command line or on stdin this +# script returns the rpm-helper minimal version needed to handle them + +if (@ARGV) { + foreach (@ARGV) { + process_file($_); + } +} else { + # notice we are passed a list of filenames NOT as common in unix the + # contents of the file. + foreach (<>) { + process_file($_); + } +} + +if ($version) { + print "Requires(post): rpm-helper >= $version\n"; + print "Requires(preun): rpm-helper >= $version\n"; + +} + +sub process_file { + my ($file) = @_; + + return unless -f $file; + return unless $file =~ m{/lib/systemd/system/\S+\.service$}; + + $version = "0.24.8"; +} \ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment.ksh b/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment.ksh new file mode 100644 index 000000000..0cf3733b7 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120426/c17a395f/attachment.ksh @@ -0,0 +1,36 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +my $version; + +# Given a list of filenames on the command line or on stdin this +# script returns the rpm-helper minimal version needed to handle them + +if (@ARGV) { + foreach (@ARGV) { + process_file($_); + } +} else { + # notice we are passed a list of filenames NOT as common in unix the + # contents of the file. + foreach (<>) { + process_file($_); + } +} + +if ($version) { + print "Requires(post): rpm-helper >= $version\n"; + print "Requires(preun): rpm-helper >= $version\n"; + +} + +sub process_file { + my ($file) = @_; + + return unless -f $file; + return unless $file =~ m{/lib/systemd/system/\S+\.service$}; + + $version = "0.24.8"; +} \ No newline at end of file -- cgit v1.2.1