Your message dated Thu, 15 Jan 2015 11:33:43 +0000
with message-id <[email protected]>
and subject line Bug#775196: fixed in argonaut 0.9.1-4
has caused the Debian Bug report #775196,
regarding argonaut-client: the detection of the correct json library to load is 
broken
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.)


-- 
775196: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775196
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: argonaut-client
Version: 0.9.1.3
Severity: important
Tags: patch upstream

Dear Maintainer,

   * What led up to the situation?

when running argonaut client i found that it didn't detect correctly the 
perl json rpc  library to load

   * What exactly did you do (or not do) that was effective (or
     ineffective)?

we (upstream) created a patch to fix the issue

   * What was the outcome of this action?

it work as expected after the patch was applied


-- System Information:
Debian Release: 7.7
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/4 CPU cores)
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Benoit Mortier
CEO 
OpenSides "logiciels libres pour entreprises" : http://www.opensides.eu/
Promouvoir et défendre le Logiciel Libre http://www.april.org/
Main developper in FusionDirectory : http://www.fusiondirectory.org/
Official French representative for OPSI : http://opsi.org/

From 9c1ee3c09e8f078b826d2c741e4b6142f2260bda Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Bernigaud?= <[email protected]>
Date: Thu, 18 Dec 2014 13:16:54 +0100
Subject: [PATCH] Fixes #3526 Using legacy json-rpc in Jessie

---
 argonaut-client/bin/argonaut-client |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/argonaut-client/bin/argonaut-client b/argonaut-client/bin/argonaut-client
index 238e549..3e9bd7d 100644
--- a/argonaut-client/bin/argonaut-client
+++ b/argonaut-client/bin/argonaut-client
@@ -69,7 +69,13 @@ $App::Daemon::as_user = "root";
 
 daemonize();
 
-my $server = JSON::RPC::Server::Daemon->new(
+my $serverClass;
+if (USE_LEGACY_JSON_RPC) {
+  $serverClass = "JSON::RPC::Legacy::Server::Daemon";
+} else {
+  $serverClass = "JSON::RPC::Server::Daemon";
+}
+my $server = $serverClass->new(
   LocalPort => $client_settings->{'port'},
   ($server_settings->{'protocol'} eq 'https') ? (SSL_server    => 1,
                                                   SSL_key_file  => $client_settings->{'keyfile'},
-- 
1.7.10.4

Attachment: signature.asc
Description: This is a digitally signed message part.


--- End Message ---
--- Begin Message ---
Source: argonaut
Source-Version: 0.9.1-4

We believe that the bug you reported is fixed in the latest version of
argonaut, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mike Gabriel <[email protected]> (supplier of updated argonaut package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 12 Jan 2015 16:33:20 +0100
Source: argonaut
Binary: argonaut-common argonaut-common-fai argonaut-ldap2zone argonaut-quota 
argonaut-dovecot argonaut-server argonaut-server-module-fai 
argonaut-server-module-opsi argonaut-client argonaut-fuse 
argonaut-fuse-module-fai argonaut-fuse-module-opsi argonaut-fai-mirror 
argonaut-fai-nfsroot argonaut-fai-server
Architecture: source all
Version: 0.9.1-4
Distribution: unstable
Urgency: medium
Maintainer: FusionDirectory Packagers <[email protected]>
Changed-By: Mike Gabriel <[email protected]>
Description:
 argonaut-client - Argonaut JSON-RPC client to manage computers and services
 argonaut-common - Argonaut (common functions and libraries)
 argonaut-common-fai - Argonaut (common library for FAI)
 argonaut-dovecot - Argonaut (client-module for dovecot)
 argonaut-fai-mirror - (Argonaut (scripts to manage Debian mirrors)
 argonaut-fai-nfsroot - Argonaut (tools, queues and status management)
 argonaut-fai-server - Argonaut (scripts to enable Argonaut integration with 
FAI)
 argonaut-fuse - Argonaut (modular TFTP/Fuse supplicant)
 argonaut-fuse-module-fai - Argonaut (LDAP FAI module for the TFTP/Fuse 
supplicant)
 argonaut-fuse-module-opsi - Argonaut (OPSI module for the TFTP/Fuse supplicant)
 argonaut-ldap2zone - Argonaut (tool to extract DNS zones from LDAP trees)
 argonaut-quota - Argonaut (tool to apply disk quota from ldap)
 argonaut-server - Argonaut JSON-RPC server to manage system deployment
 argonaut-server-module-fai - Argonaut JSON-RPC server module to manage FAI 
(Fully Automated In
 argonaut-server-module-opsi - Argonaut JSON-RPC server module to manage OPSI 
(open pc server in
Closes: 775196
Changes:
 argonaut (0.9.1-4) unstable; urgency=medium
 .
   [ Benoit Mortier ]
   * debian/patches:
     + Add 0002-Fixes-3286-put-comment-around-pod-explanation-in-arg.patch.
       Taken patch from argonaut-client upstream that fixes upstream bug #3526;
       add a switch to select the proper library depending on whether running
       on Debian wheezy or Debian jessie. (Closes: #775196).
Checksums-Sha1:
 19f1c6c0b75684cb39034dcf56e6a4c40afe1fd9 2990 argonaut_0.9.1-4.dsc
 dfe7cb0396c8a2ac86ceff27864a896fbe95f578 9620 argonaut_0.9.1-4.debian.tar.xz
 5273181f21817a887557c1ee6869e90e85160144 12332 argonaut-common_0.9.1-4_all.deb
 53023e95d54a051f2cec84cf707d89c6f1782647 12926 
argonaut-common-fai_0.9.1-4_all.deb
 3b64476f81ca99325334c0995d9e0ba3be3d46a5 9514 
argonaut-ldap2zone_0.9.1-4_all.deb
 523e37e22690629bb97bd3cebf372f7f2ebe678b 7786 argonaut-quota_0.9.1-4_all.deb
 e2798f972e2a7c900e0b1b00e01ba0b6c188c300 4118 argonaut-dovecot_0.9.1-4_all.deb
 5720d2e6a431b88352e802db7c05918b93e46b2f 15798 argonaut-server_0.9.1-4_all.deb
 da679e283c7d1c25845ee6900145f906d2ba270c 4482 
argonaut-server-module-fai_0.9.1-4_all.deb
 088ef9eb9b30c8bd80ca37d0e5a0b2c8987a46d5 7600 
argonaut-server-module-opsi_0.9.1-4_all.deb
 d9753e8f097d90995fac866eab88d0e7ff54c780 10082 argonaut-client_0.9.1-4_all.deb
 ca985ea3529e8c0d392383a7f8f8d7b331deff89 10890 argonaut-fuse_0.9.1-4_all.deb
 4c644766990c2a68c0297c2cf540a141367df400 5464 
argonaut-fuse-module-fai_0.9.1-4_all.deb
 4968a2c611adf6ab1245565e86c2249d88ea6c19 4854 
argonaut-fuse-module-opsi_0.9.1-4_all.deb
 fe7d7bcfb29011e26229d03455148b306461b398 10708 
argonaut-fai-mirror_0.9.1-4_all.deb
 326fce7cd2082140449be84072d838a7dc34cd32 11032 
argonaut-fai-nfsroot_0.9.1-4_all.deb
 268561393ed42ad42441334013a16d43a77ee679 13634 
argonaut-fai-server_0.9.1-4_all.deb
Checksums-Sha256:
 913989f890359ab82492c093e1ead5274b549af81a3254e5fb6a2c633230915e 2990 
argonaut_0.9.1-4.dsc
 ddc2b381ca80983c5a68c6d4a4b28dc53f9ee9b9525fb37b136b7b4488655ce6 9620 
argonaut_0.9.1-4.debian.tar.xz
 0fc43cb3cba59495096ef91d2e00a9b88552da350455b176c702bad316e56d8e 12332 
argonaut-common_0.9.1-4_all.deb
 a6763f35d5cfc80231583d9d50a85a58dbf8e82671a327689ce9ca4a0854aa28 12926 
argonaut-common-fai_0.9.1-4_all.deb
 e64bbbe219b94826cb0101134c99be6bc2c5f257373b4ef09c6e6f5c5a5a57b9 9514 
argonaut-ldap2zone_0.9.1-4_all.deb
 f7458d9538d3962770a40731e03a64736b92b8bd688cd14fd8e5d259f2249b5a 7786 
argonaut-quota_0.9.1-4_all.deb
 7a57004794879c3e664dddc1a56b399f4bdec9358875b396b05872a13bc1c136 4118 
argonaut-dovecot_0.9.1-4_all.deb
 957b71ebb15015acf607d8ee7b64b4d855432f55b7f1d0d22708b9249fb6454c 15798 
argonaut-server_0.9.1-4_all.deb
 cc26c96473a7ec7309bd8d8aa1a36505795e65fef827f195e8ac76ec977c8e88 4482 
argonaut-server-module-fai_0.9.1-4_all.deb
 4b53c4315304790d79155f4dbeb3c168f90229a8f65254aa74fea5de65004d51 7600 
argonaut-server-module-opsi_0.9.1-4_all.deb
 29ded269d5037ba0d9cabc0dbe96a871543af763361dc7977468da925e5177f0 10082 
argonaut-client_0.9.1-4_all.deb
 fd71b7575b9446afaf3b186aa37ef940f080d4b142fa847c1aa0135e0746a331 10890 
argonaut-fuse_0.9.1-4_all.deb
 ab5bd185fed84a15c9d3bd5be97ba5dc53cd5e032f699978ea717757117f4ee6 5464 
argonaut-fuse-module-fai_0.9.1-4_all.deb
 a64998e28cf0eb8e35a2f9a457c821e726dd3d7e2162a203c3784656123a4161 4854 
argonaut-fuse-module-opsi_0.9.1-4_all.deb
 5de6d7330f2ab08dd2f38053a0af8d96cbf3b432afc9a889da5e830e0d3081c1 10708 
argonaut-fai-mirror_0.9.1-4_all.deb
 35dd4e7aee88cc7b2d3322a60d8138207668283f9b6795e929772abd6a51acc7 11032 
argonaut-fai-nfsroot_0.9.1-4_all.deb
 3595447a53dacd6cb54e11858a7159e93298973b0d3d3afed82a3837086d5759 13634 
argonaut-fai-server_0.9.1-4_all.deb
Files:
 cdbf111eddd394717786f734e3612fc2 2990 utils optional argonaut_0.9.1-4.dsc
 81d19f714a6828701df21c13a14e70ca 9620 utils optional 
argonaut_0.9.1-4.debian.tar.xz
 c80145ccf6bee15d2fa1f5cb6f484558 12332 utils optional 
argonaut-common_0.9.1-4_all.deb
 2172e146353eb896595feb2908d07cf7 12926 utils optional 
argonaut-common-fai_0.9.1-4_all.deb
 4af7705eaeaa2e74bf0cc3932b25b866 9514 utils optional 
argonaut-ldap2zone_0.9.1-4_all.deb
 e3a69cd0c0f8e5294be842070744d439 7786 utils optional 
argonaut-quota_0.9.1-4_all.deb
 1437bc6113a1eea1f194ffdb6ca44dd4 4118 utils optional 
argonaut-dovecot_0.9.1-4_all.deb
 7718782e1153df3a4957192835ca8924 15798 utils optional 
argonaut-server_0.9.1-4_all.deb
 19df146fdd7ac37dbf9b99b493b37162 4482 utils optional 
argonaut-server-module-fai_0.9.1-4_all.deb
 71e9bbc073307e87fd9ae6b6983bdfee 7600 utils optional 
argonaut-server-module-opsi_0.9.1-4_all.deb
 9be9dfe675647a76faedfa0fa3a572f2 10082 utils optional 
argonaut-client_0.9.1-4_all.deb
 60112b2a17d4e2280a7f8f9549eb355b 10890 utils optional 
argonaut-fuse_0.9.1-4_all.deb
 0a758c7203b24fea926c662a29353793 5464 utils optional 
argonaut-fuse-module-fai_0.9.1-4_all.deb
 0ed601a6328f730da4de09642c233018 4854 utils optional 
argonaut-fuse-module-opsi_0.9.1-4_all.deb
 e9140deec1e3413a15e1b2fb6ad76a5f 10708 utils optional 
argonaut-fai-mirror_0.9.1-4_all.deb
 f2c2a056c058e28335f3883c833c5e9c 11032 utils optional 
argonaut-fai-nfsroot_0.9.1-4_all.deb
 14c17217578f170ac81295cbab92f387 13634 utils optional 
argonaut-fai-server_0.9.1-4_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJUt6FHAAoJEJr0azAldxsxd6gP/1eNPePHcIojN2AxTfxVFb8e
GGOfR35aenw5pGKTl5LrbNnKF647FDuBcSSGJKL7UtSoeagsMIUM0S0cHicbho3g
SlF2Y0Fo3VaR1sXE9tpUc9neTR9P+MQepO8xY1OFCLrGYp91M+gnB+f3+qr/GOp3
xhy5StOdZqQD0kY1WvaVqPGmIgXl0NJQuT+jVZtobYzuM5Rr6bqcB0zhMO3mDF7r
OcKAiiOCh09mGmH3a1wnfx/mypyJccD89dNADKsHFILvKOSmF+SGdi8AenXNxxHY
jaWvuPoTToHZWmtY9SbaJZuyxZXGqrXaDTuMLizwxctrs0jbtSZTiDUIkIOsFtS/
ZuOzy+hew3aWgBR3zDI8rBNYxfXsobSLOdyE2YhmRC6EzfF1/SoYn7FHgWjvbmOi
VEGK8pqyfKOyQ6GEbdMC+dDKtDFEs1m4sJc81U97ezZtJwcqx4oWX0Z6zhwRWhYv
FV3nP/DV3wYBj0dt0X5PXloOz3sZSZivJvlXm6shPeSnYc1IFCYcVNX6v3P1hTo8
VAgr20GPeeeauPkhJN9I5xDUGDwrvduEBP5YSWzjglvai+W/jH/jsTRXPjnyYbcI
MOMJ0ojqDeC3NEssygZyyCWOe6U6zmd/2QKuZ3oL2K5+Y5UXG02mV1rH9Lt1NLVc
4JfH5CjmE4uUo2udDQ0O
=OeKj
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to