From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: Fwd: [X2Go-Dev] Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mihai Moldovan , 820@bugs.x2go.org Resent-From: Mihai Moldovan Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 17 Mar 2015 05:45:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: report 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by submit@bugs.x2go.org id=B.142657088311157 (code B); Tue, 17 Mar 2015 05:45:02 +0000 Received: (at submit) by bugs.x2go.org; 17 Mar 2015 05:41:23 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID, URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from Root24.de (powered.by.root24.eu [5.135.3.88]) by ymir.das-netzwerkteam.de (Postfix) with ESMTP id B5CE25DAA2 for ; Tue, 17 Mar 2015 06:41:19 +0100 (CET) Received: from nopileos.local (home.ionic.de [217.92.117.31]) by mail.ionic.de (Postfix) with ESMTPSA id 6D4D44F08961; Tue, 17 Mar 2015 06:41:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ionic.de; s=default; t=1426570878; bh=/Z7mVXliFOVUobCnKzuBwkTHB7IlwuhmkzKsrewp5Qo=; h=Date:From:To:Subject:References:In-Reply-To:From; b=fCeM4ZwcSLeEFo6Jf6tsB/KVe3rXt+8deA1Nvj5z42XC99eEZFpyB2rH84bO37USy Gu/7ciC8EZYSeO8SuY5mgpKpnLhP2y58ve5H0SL9nWCL0yGW1PBHB77al/iOYHWt76 xhm2jG46HbyF2Ht+ZbSUVgevPA1RWArnPDyK3o9Q= Message-ID: <5507BE76.1060309@ionic.de> Date: Tue, 17 Mar 2015 06:41:10 +0100 From: Mihai Moldovan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: submit@bugs.x2go.org, Rok Mandeljc References: <550752A1.1070807@gmail.com> In-Reply-To: <550752A1.1070807@gmail.com> X-Forwarded-Message-Id: <550752A1.1070807@gmail.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="I5XJWLDcKIDClJ9hwKiLRattj196ndR8q" This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --I5XJWLDcKIDClJ9hwKiLRattj196ndR8q Content-Type: multipart/mixed; boundary="------------020204030301070602080807" This is a multi-part message in MIME format. --------------020204030301070602080807 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Package: x2goserver Version 4.0.1.19 Tag: patch Submitter: Rok Mandeljc -------- Forwarded Message -------- Subject: [X2Go-Dev] Patch: x2goserver: x2goruncommand - set IMEXIT=3D"true" for gnome-terminal Date: Mon, 16 Mar 2015 23:01:05 +0100 From: Rok Mandeljc To: x2go-dev@lists.x2go.org Hello, I have been trying to set up x2goserver on my Fedora 21 boxes, and gnome-terminal seems to be failing with symptoms similar to those described in #268. It seems that x2goruncommand has been reworked a bit since that patch, and now attempts to force the forking programs to stay in the foreground by capturing their output to STDOUT. Unfortunately, this does not seem to work for gnome-terminal; the terminal window appears on the client for a second, then closes and the session is proclaimed to be finished. This can be fixed by explicitly setting IMEXIT=3D"true" if called binary is gnome-terminal, which is done by the attached patch. Regards, Rok --------------020204030301070602080807 Content-Type: text/x-patch; name="0001-x2goruncommand-set-IMEXIT-true-if-called-binary-is-g.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename*0="0001-x2goruncommand-set-IMEXIT-true-if-called-binary-is-g.pa"; filename*1="tch" =46rom 55078582d8ed695b44c0bb564765636326c0c0f3 Mon Sep 17 00:00:00 2001 From: Rok Mandeljc Date: Mon, 16 Mar 2015 22:41:12 +0100 Subject: [PATCH] x2goruncommand: set IMEXIT=3D"true" if called binary is gnome-terminal The STDOUT trick used by x2goruncommand to keep programs that fork to background (sort of) in the foreground does not seem to have the desired effect with gnome-terminal on Fedora 21. To make it work, IMEXIT needs to be set to "TRUE". --- x2goserver/bin/x2goruncommand | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/x2goserver/bin/x2goruncommand b/x2goserver/bin/x2goruncomman= d index ac7ff7f..5bda27b 100755 --- a/x2goserver/bin/x2goruncommand +++ b/x2goserver/bin/x2goruncommand @@ -274,6 +274,14 @@ then fi fi =20 +# A work-around for gnome-terminal; the application quits immediately, +# and we cannot keep it in foreground with STDOUT trick +if [ "$BNAME" =3D=3D "gnome-terminal" ] +then + IMEXIT=3D"true" +fi + + if [ "$X2GO_SESS_TYPE" =3D=3D "P" ] then IMEXIT=3D"true" --=20 2.1.0 --------------020204030301070602080807 Content-Type: text/plain; charset=UTF-8; name="Attached Message Part" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Attached Message Part" _______________________________________________ x2go-dev mailing list x2go-dev@lists.x2go.org http://lists.x2go.org/listinfo/x2go-dev --------------020204030301070602080807-- --I5XJWLDcKIDClJ9hwKiLRattj196ndR8q Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJVB757AAoJEB/WLtluJTqHCAIQAMe1aeWh9KEoRnvVM+CjB8A2 4NYs9OmdPqx27vnpNStSn8SAEXYrfbeSvW1JGQbFNMGzD1abLcm40mqBMk+i/vRM 9HcCzxFcjI3H9uEBooQEHo14+9atTEHXz6tzioQgSNUxn+D9TvVxygYAyE5QFyMs TXnWu9LuKqBXKHL/MeHUFyIkwVs0v7g6qaFPJb0j0lmhjKpBIwOWPGjsi627bP0r /mcB9GKEAfJm9exiKt5hpdWQc9yeF0AqaoyXUZY8q83WqXM7cUmBKU1j6qnYvyIs eo1kkQgUqhSfUEfQbw9Z5eUhQ1e/rnpEaqoL61VCHnKiGc4GW/glfdTq7H66QLz5 x3U8GbNgUn8oXgtX/26y9dv3inVrvnGqdZPpYXyPSpfZObwR3yqSAlatCCDJUcPK YXWIwpCfmPR9kBGrn/oNVnrBCpu6oIsu70xQGNRuVUb9s2XaMjFtNqdeJwiwft9w viZVbucK70LQ7CaD+UvU8iez+9crhhxXVMtzmgDRTLsNY1LtyZtEeaQYZEPF/Sf0 FMZtU3BrZgixt/lCaOcGkd0iz0pAlIl3CmHgme9Hy+jBiN6yOIAuoiQj5hEDyFbn r3L8VH0tpqF4rLnQ0a0bznvhl16IHtG89r2b23pcQyXAGjGYYW4p8m7gMf/HpKjg mA0g3w8l8JDRMSia/Dd2 =NvSR -----END PGP SIGNATURE----- --I5XJWLDcKIDClJ9hwKiLRattj196ndR8q-- From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Fwd: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mihai Moldovan , 820@bugs.x2go.org, 820@bugs.x2go.org Resent-From: Mihai Moldovan Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 17 Mar 2015 06:05:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.142657216316013 (code B ref 820); Tue, 17 Mar 2015 06:05:01 +0000 Received: (at 820) by bugs.x2go.org; 17 Mar 2015 06:02:43 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID, URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from Root24.de (powered.by.root24.eu [5.135.3.88]) by ymir.das-netzwerkteam.de (Postfix) with ESMTP id 30FAA5DAA2 for <820@bugs.x2go.org>; Tue, 17 Mar 2015 07:02:41 +0100 (CET) Received: from nopileos.local (home.ionic.de [217.92.117.31]) by mail.ionic.de (Postfix) with ESMTPSA id C7F9E4F088F3; Tue, 17 Mar 2015 07:02:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ionic.de; s=default; t=1426572161; bh=hzzqtrY+JxB4J3Qxvw/BpsUgu1ZUiHFE+xuGMkUFpT0=; h=Date:From:Reply-To:To:Subject:References:In-Reply-To:From; b=TpDnyMTlUUYL50wRGkGLF4+dDD4bJamnOFDIGs2AnCOHPUwaF9lJzDvldzRMF9aIy MrzuyLhGL5u0XvB3J3b5xVMrHCaJCm5lLfKMPJ4nwgfOjgp0+w+Ze/gp1JyOHcqRmb vqz57fvdCUefELM2Amx3Klw5A5r4s61A+hxbYeik= Message-ID: <5507C377.4060008@ionic.de> Date: Tue, 17 Mar 2015 07:02:31 +0100 From: Mihai Moldovan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Rok Mandeljc , 820@bugs.x2go.org References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> In-Reply-To: <5507BE76.1060309@ionic.de> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="FieORnvG8aSojMjsjOE454FFtFWuXsoB2" This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --FieORnvG8aSojMjsjOE454FFtFWuXsoB2 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Control: submitter -1 Rok Mandeljc Thanks On 17.03.2015 06:41 AM, Mihai Moldovan wrote: > I have been trying to set up x2goserver on my Fedora 21 boxes, and > gnome-terminal seems to be failing with symptoms similar to those > described in #268. > > It seems that x2goruncommand has been reworked a bit since that patch, > and now attempts to force the forking programs to stay in the foregroun= d > by capturing their output to STDOUT. Unfortunately, this does not seem > to work for gnome-terminal; the terminal window appears on the client > for a second, then closes and the session is proclaimed to be finished.= > This can be fixed by explicitly setting IMEXIT=3D"true" if called binar= y > is gnome-terminal, which is done by the attached patch. This looked weird at first glance, because you've previously (two years ago) sent a patch to explicitly disable IMEXIT for GNOME Terminal. However, Mike#1 changed the IMEXIT behavior with commit c3afe1c154dfeb0ba052f7506f0cadc5f6c62871 and that's also why it's now failing for GNOME Terminal. I'll be adding IMEXIT=3D"true" and your comment where gnome-terminal is defined, if that's OK with you? Will craft and commit a patch tomorrow. Thanks for contributing! Mihai N.B.: shouldn't this be also required for KDE4's konsole? Looks like it, but I'm not a KDE user, so... input welcome. --FieORnvG8aSojMjsjOE454FFtFWuXsoB2 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJVB8N+AAoJEB/WLtluJTqH/a0QAIybIoz2USE0a6RG9zJc576N Wuuy/pY7de8q3iqFe1GhPXtkgNOJnWv4iOYOC2O7IyCB61N3nGcetC8GAVy/ajh0 jiTUggPG3Itn87xraifk65Jd4qHpMCywAGcpVIG8MyqKgXucHoaoXEGSRXgMLEXV /VlymBo53USXV+zMNV7OzXyJkRzFbY6z4uOYwVocOyWVsQgE9HgqqRe6kZUp8NN5 rI3bnkZLj8tAQXl84ytcQdOFJ9PtOszyKuaBHa76FmCojemzepONSGSVYpVqCn1Y 3px6ECvTMp5HZsjkD3W1N3hnGOKd68uPhzKKEXxbrtPbwuGyletq0TPH/wGG3jiI yTMG190bz6yekBmWXXa2EJWjMNOe+Tn+TrMLzkcusW34SGFVFvA/i3W8of018lgX 7ta7WT9yssseaK3/iCQN25p88cLSwrSxy2t38oiMbwXMoXf6VRAzQmR2bNGFSVf4 1yRRa24DlLrIIEJEFHMWY93eBeZn2YcgZ/yczVXFYn1IFTXiNpFX2M873MGD/mb8 i+dNnRuCzd+gL/5e8NTXqWJaUdIESCqESFXQLFesEu0gUtrdip6cXsfywbpFYsxb 5Pg0W9Bhu3EbrV06Gf9TPuE++S91x5CNXKNiLPxlPcl81gvsS2KS2mCpPytDX0R4 fEAbJx+pJ3UIYfRhWnXh =P22z -----END PGP SIGNATURE----- --FieORnvG8aSojMjsjOE454FFtFWuXsoB2-- From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Fwd: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Rok Mandeljc , 820@bugs.x2go.org Resent-From: Rok Mandeljc Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 17 Mar 2015 10:10:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.14265869474917 (code B ref 820); Tue, 17 Mar 2015 10:10:02 +0000 Received: (at 820) by bugs.x2go.org; 17 Mar 2015 10:09:07 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=ham version=3.3.2 Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id C80065DAA2 for <820@bugs.x2go.org>; Tue, 17 Mar 2015 11:09:05 +0100 (CET) Received: by wixw10 with SMTP id w10so6490974wix.0 for <820@bugs.x2go.org>; Tue, 17 Mar 2015 03:09:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=FE6PHdys3bOKnGSqBAph9QXg6DuikOkpvL3i9AFB80Q=; b=gEsYMzskaP1GjqlZrg+nX0MvpOffa/RqYTsT14AURjLlK0HxutvPTxf8Cgz5PsDUQK vQBVGOHIiTv5NYQLfIqj9Z7jjhoI7QZvt6/+YW2RVKwBP0QxVJxQwr/zvxj9ZrVTAFul rcwYrv91V7up44HmECTlxhUVHD4SANDzi4mZ6FMUX6uSYUWc5Nz7I0r+ZHzZueqBxdRy K7QkdANHrFJXoOEf79KWEZug7DA6nTmkw5mp7fCyXRM+yCStahJPLP525YNxAYqidGvU mqYkTZu5EYZ05KHNF9//IDokeXJCHKf1UMzW8z3vMw7ObJ3iC6VH7vHTJzoF9xJAgkQW bPfg== X-Received: by 10.194.83.66 with SMTP id o2mr133634619wjy.55.1426586945370; Tue, 17 Mar 2015 03:09:05 -0700 (PDT) Received: from [192.168.90.28] (natfe.fe.uni-lj.si. [193.2.84.130]) by mx.google.com with ESMTPSA id l9sm1974775wij.16.2015.03.17.03.09.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Mar 2015 03:09:04 -0700 (PDT) Message-ID: <5507FD3E.90904@gmail.com> Date: Tue, 17 Mar 2015 11:09:02 +0100 From: Rok Mandeljc User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Mihai Moldovan , 820@bugs.x2go.org References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> <5507C377.4060008@ionic.de> In-Reply-To: <5507C377.4060008@ionic.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit On 17. 03. 2015 07:02, Mihai Moldovan wrote: > Control: submitter -1 Rok Mandeljc > Thanks > > > On 17.03.2015 06:41 AM, Mihai Moldovan wrote: >> I have been trying to set up x2goserver on my Fedora 21 boxes, and >> gnome-terminal seems to be failing with symptoms similar to those >> described in #268. >> >> It seems that x2goruncommand has been reworked a bit since that patch, >> and now attempts to force the forking programs to stay in the foreground >> by capturing their output to STDOUT. Unfortunately, this does not seem >> to work for gnome-terminal; the terminal window appears on the client >> for a second, then closes and the session is proclaimed to be finished. >> This can be fixed by explicitly setting IMEXIT="true" if called binary >> is gnome-terminal, which is done by the attached patch. > This looked weird at first glance, because you've previously (two years > ago) sent a patch to explicitly disable IMEXIT for GNOME Terminal. > > However, Mike#1 changed the IMEXIT behavior with commit > c3afe1c154dfeb0ba052f7506f0cadc5f6c62871 and that's also why it's now > failing for GNOME Terminal. Indeed :) > I'll be adding IMEXIT="true" and your comment where gnome-terminal is > defined, if that's OK with you? If you are talking about the if [ "$cmd" == "TERMINAL" ] switch, then I think it will not fix the case when session is "single command" and the "gnome-terminal" is manually entered as a binary (with or without path). I use such session definition on couple of workstations that have both KDE and GNOME installed to get gnome-terminal instead of konsole... Not sure how wide-spread that use case is, though; or if it could perhaps be done better? > > Will craft and commit a patch tomorrow. > > Thanks for contributing! > > > > Mihai > > > N.B.: shouldn't this be also required for KDE4's konsole? Looks like it, > but I'm not a KDE user, so... input welcome. Capturing konsole's output to STDOUT seems to do the trick, at least at the moment. So for now, it works correctly without setting IMEXIT. Regards, Rok From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mihai Moldovan , 820@bugs.x2go.org Resent-From: Mihai Moldovan Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 17 Mar 2015 14:45:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.142660340322436 (code B ref 820); Tue, 17 Mar 2015 14:45:01 +0000 Received: (at 820) by bugs.x2go.org; 17 Mar 2015 14:43:23 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID, URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from Root24.de (powered.by.root24.eu [5.135.3.88]) by ymir.das-netzwerkteam.de (Postfix) with ESMTP id 398475DAA2 for <820@bugs.x2go.org>; Tue, 17 Mar 2015 15:43:22 +0100 (CET) Received: from nopileos.local (home.ionic.de [217.92.117.31]) by mail.ionic.de (Postfix) with ESMTPSA id BF1984F089A9; Tue, 17 Mar 2015 15:43:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ionic.de; s=default; t=1426603401; bh=zxcRTwIETiswADfhgYICcz9sKADDpCItSVUU6a4fMlE=; h=Date:From:To:Subject:References:In-Reply-To:From; b=b/qYjebLE5nK1eqs6p/jl8UWdlqMflsXe39lKn9SJL3VKg/AeypISmJIj8nokUxEw tftzVj7KeF6PM6tWcYnLaUbI0681bjpsW+xyNvz+KsZb+6Dv7intqSToziqziOenCh 51EXQXC5CxZS341ohhdX6NX7Aa9ThRWjAR+LrFqA= Message-ID: <55083D83.9000702@ionic.de> Date: Tue, 17 Mar 2015 15:43:15 +0100 From: Mihai Moldovan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Rok Mandeljc , 820@bugs.x2go.org References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> <5507C377.4060008@ionic.de> <5507FD3E.90904@gmail.com> In-Reply-To: <5507FD3E.90904@gmail.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="efsnXXWfLxKRjb4giAt6c4d0LwqL7J6Dd" This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --efsnXXWfLxKRjb4giAt6c4d0LwqL7J6Dd Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 17.03.2015 11:09 AM, Rok Mandeljc wrote: > On 17. 03. 2015 07:02, Mihai Moldovan wrote: > [...] >> I'll be adding IMEXIT=3D"true" and your comment where gnome-terminal i= s >> defined, if that's OK with you? > If you are talking about the if [ "$cmd" =3D=3D "TERMINAL" ] switch, th= en I > think it will not fix the case when session is "single command" and the= > "gnome-terminal" is manually entered as a binary (with or without path)= =2E > I use such session definition on couple of workstations that have both > KDE and GNOME installed to get gnome-terminal instead of konsole... Not= > sure how wide-spread that use case is, though; or if it could perhaps b= e > done better? Yes, you're right and that makes sense. As a side note, luckily, published applications are always handled with IMEXIT, so these are good. >> [...] >> N.B.: shouldn't this be also required for KDE4's konsole? Looks like i= t, >> but I'm not a KDE user, so... input welcome. > Capturing konsole's output to STDOUT seems to do the trick, at least at= > the moment. So for now, it works correctly without setting IMEXIT. OK, thanks! --efsnXXWfLxKRjb4giAt6c4d0LwqL7J6Dd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJVCD2IAAoJEB/WLtluJTqHjT8P/2lJeeikKk9Gx6GtwhgQ11QG zw1g+IP+24aSb7Z3hWPkAe9eJW6Q/0gZUr4mA9HmXjHddEWr80BiT+oesHVOq+7z IW8etHgMs9WGPFqgSUGgOE5RD8lsO5ohgNM8tXSe0hWjgSfIfZoV5RchYIboTRx5 u4QRh7/sJNVYMJ6Lo1CDTgfoL0Az/EY6fnwMFcq9v5BF1fhtXEnJNbF4iR5hN8Ub US/SpTHGudJbwquAwi3c5aO67Fr2CWEWC1cX3N3ChucXFtXp+wplmiAZ7nb+n8OS PImnmABBK+hodgfuU9N70SShH+j95KYO+QXFdMQPHantVJFLwOMrMVq4LLP7uHrN g8Zl/WFvJAjs72mfM/drvckFLK/iMTdRtmv248gv8qe5a+vqX6bgBHsxkVVdJh4j haDOpC+lrK59gbo6zeTmByDRPiHO1Tg2hlckhVuID2845acXlayOxBpIQP9+taCA dYGUmdYD6lK4ET4zyzTPDM02w4Yk0ijm9JcS+TOtSh0/NEtyQAgBHh2g70de2iLp +pMTDVapyCbEd4sXrFTxPwKwTlkRi9GBIg3Eq+1rnJM9nzs6qZoHPkEFG3YSW2y8 BMcLNh+4XsZ2OOiHr7ofGDMO0nRQ2e5jXKx4wkMtVH6skw3Ux30/IfwYWY56FmN5 uJWxSVr9svRbYPnRinUk =YdLY -----END PGP SIGNATURE----- --efsnXXWfLxKRjb4giAt6c4d0LwqL7J6Dd-- From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Bug#820: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mike Gabriel , 820@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 17 Mar 2015 16:10:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.14266083065433 (code B ref 820); Tue, 17 Mar 2015 16:10:01 +0000 Received: (at 820) by bugs.x2go.org; 17 Mar 2015 16:05:06 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id A6E4B5DAA2 for <820@bugs.x2go.org>; Tue, 17 Mar 2015 17:05:04 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 109A4C14; Tue, 17 Mar 2015 17:05:04 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id E149B3BFD9; Tue, 17 Mar 2015 17:05:03 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fe0nvbbTdPOf; Tue, 17 Mar 2015 17:05:03 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTPS id 913293B968; Tue, 17 Mar 2015 17:05:03 +0100 (CET) Received: from bifrost.das-netzwerkteam.de (bifrost.das-netzwerkteam.de [178.62.101.154]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Tue, 17 Mar 2015 16:05:03 +0000 Date: Tue, 17 Mar 2015 16:05:03 +0000 Message-ID: <20150317160503.Horde.w2PfHDjbkGaGJIzvi_LvJw8@mail.das-netzwerkteam.de> From: Mike Gabriel To: Mihai Moldovan , 820@bugs.x2go.org, Rok Mandeljc References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> <5507C377.4060008@ionic.de> <5507FD3E.90904@gmail.com> <55083D83.9000702@ionic.de> In-Reply-To: <55083D83.9000702@ionic.de> User-Agent: Internet Messaging Program (IMP) H5 (6.2.2) Accept-Language: de,en Organization: DAS-NETZWERKTEAM X-Originating-IP: 178.62.101.154 X-Remote-Browser: Mozilla/5.0 (X11; Linux x86_64; rv:32.0) Gecko/20100101 Firefox/32.0 Iceweasel/32.0 Content-Type: multipart/signed; boundary="=_U4Kuu_j30hMQfp0EtHtzkQ8"; protocol="application/pgp-signature"; micalg=pgp-sha1 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_U4Kuu_j30hMQfp0EtHtzkQ8 Content-Type: text/plain; charset=ISO-8859-1; format=flowed; DelSp=Yes Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi all, On Di 17 M=E4r 2015 15:43:15 CET, Mihai Moldovan wrote: > On 17.03.2015 11:09 AM, Rok Mandeljc wrote: >> On 17. 03. 2015 07:02, Mihai Moldovan wrote: >> [...] >>> I'll be adding IMEXIT=3D"true" and your comment where gnome-terminal is >>> defined, if that's OK with you? >> If you are talking about the if [ "$cmd" =3D=3D "TERMINAL" ] switch, the= n I >> think it will not fix the case when session is "single command" and the >> "gnome-terminal" is manually entered as a binary (with or without path). >> I use such session definition on couple of workstations that have both >> KDE and GNOME installed to get gnome-terminal instead of konsole... Not >> sure how wide-spread that use case is, though; or if it could perhaps be >> done better? > > Yes, you're right and that makes sense. > > As a side note, luckily, published applications are always handled with > IMEXIT, so these are good. > > >>> [...] >>> N.B.: shouldn't this be also required for KDE4's konsole? Looks like it= , >>> but I'm not a KDE user, so... input welcome. >> Capturing konsole's output to STDOUT seems to do the trick, at least at >> the moment. So for now, it works correctly without setting IMEXIT. > > OK, thanks! With gnome-terminal from GNOMEv2 IMEXIT needs to be false (because=20=20 gnome-terminal=20(v2) does _not_ fork to background). With gnome-terminal from GNOMEv3 IMEXIT needs to be true (because=20=20 gnome-terminal=20(v3) forks to background). Mike --=20 DAS-NETZWERKTEAM mike=20gabriel, herweg 7, 24357 fleckeby fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.x= fb --=_U4Kuu_j30hMQfp0EtHtzkQ8 Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJVCFCvAAoJEJr0azAldxsxhmMQALPeZCzsIS7Iq60BHP0dZbeb d56FB2EVFZOAJXnffdjzjgi1V5hjbJxnPS8RkbCbXVvgnUzxGWzDVCMJDVaTLdVQ 4ifAAfkGIqZ2R7rGV8WCgK2vdm+HUy5PQcTnE5v2FU/e66bfgfG+QQpMNJCGIQKl JbHErRFvUsAelOcOmxex0FY+S6FE1MXKUwoVK3n/5cdYVTjAjDGttMEyV46xlEme MUUg0tTOOeJWfZvLOPcjiu51b00dJzB+PVKjn+jadCIZSHTsrvbvaMmDkbg+ftTj 892LTS2ONXJNY/gwAEjPXHjCgs/a2Gdo02PvOLR4D5dXPcvxnMFwGgrwuQ3XSboQ 7VrCRs+wNH5bbJFe5+9CbbZv28f1R3l9VKvNZgI9Slb/Y+u01cL3kDqeesY3v9aI B76kzYCoZWXmUG6D0NtWJePfP4LzycIwWGbfHDyETaZB1HQva9JuVq6LUGh9Q77w nV+yr4Re0i5COGwetiPnczOdMiZ7MphcTtJp+qye2/O/qwgvfmyABXTDBFuRn1dv NfOIpnCVw9ghDUQKVYU5jkREV/0GooJC7D6hOk8vKx7iV0z0k7Yx2DczeqWxaVXb rTM4M00lFLogcE60qchV2LbcmHdNQOLB3xf+IUsXHzmJ26x+R2YnTHRkr2spwePo /appbbRoRX/vclkimJjf =izH6 -----END PGP SIGNATURE----- --=_U4Kuu_j30hMQfp0EtHtzkQ8-- From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Bug#820: Bug#820: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mihai Moldovan , 820@bugs.x2go.org Resent-From: Mihai Moldovan Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Fri, 20 Mar 2015 04:55:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.142682719632073 (code B ref 820); Fri, 20 Mar 2015 04:55:02 +0000 Received: (at 820) by bugs.x2go.org; 20 Mar 2015 04:53:16 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05,T_DKIM_INVALID, URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from Root24.de (powered.by.root24.eu [5.135.3.88]) by ymir.das-netzwerkteam.de (Postfix) with ESMTP id AAE265DAA4 for <820@bugs.x2go.org>; Fri, 20 Mar 2015 05:53:14 +0100 (CET) Received: from nopileos.local (home.ionic.de [217.92.117.31]) by mail.ionic.de (Postfix) with ESMTPSA id 593B24F08A14; Fri, 20 Mar 2015 05:53:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ionic.de; s=default; t=1426827194; bh=1YW3Pi33R4R3laTEdX9m9Zjpxrj3rcIPd+M69b+giB4=; h=Date:From:To:Subject:References:In-Reply-To:From; b=kmY8JULmyNS6XtiIy0OQwEpuJ0CgPXEFlBVDOr0B2twhXYtF3Bidlcn4NrU0NyDDw VLnUwshq8N0yO+ezmKzTIb4+BqLM3O9QCi6u7m6Lqz7Olum0DLL99c9eqeZalV7pXW ZWAi0EKSY1dLWOIvv7IpXmDnC6DNknwdbl5ocIKA= Message-ID: <550BA7B5.90105@ionic.de> Date: Fri, 20 Mar 2015 05:53:09 +0100 From: Mihai Moldovan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Mike Gabriel , 820@bugs.x2go.org, Rok Mandeljc References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> <5507C377.4060008@ionic.de> <5507FD3E.90904@gmail.com> <55083D83.9000702@ionic.de> <20150317160503.Horde.w2PfHDjbkGaGJIzvi_LvJw8@mail.das-netzwerkteam.de> In-Reply-To: <20150317160503.Horde.w2PfHDjbkGaGJIzvi_LvJw8@mail.das-netzwerkteam.de> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="xcnhS64GIx7WDoKcMFtjCOCt22nBCUFDn" This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --xcnhS64GIx7WDoKcMFtjCOCt22nBCUFDn Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 17.03.2015 05:05 PM, Mike Gabriel wrote: > With gnome-terminal from GNOMEv2 IMEXIT needs to be false (because > gnome-terminal (v2) does _not_ fork to background). > > With gnome-terminal from GNOMEv3 IMEXIT needs to be true (because > gnome-terminal (v3) forks to background). Stefan just "submitted" another bug report yesterday in a private conversion about another piece of software that needs special handling via IMEXIT -- but likewise different values dependent on the specific version used. I guess I should better handle that with a few new functions, to be able to add other software and versions more flexible in the future. Mihai P.S.: a workaround for those issues is to use pubapps. --xcnhS64GIx7WDoKcMFtjCOCt22nBCUFDn Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJVC6e2AAoJEB/WLtluJTqHB0cP/2IJDbYxIM6Pxqss1FokIDJB C0nvPBNvLT/iAmiZ5vUnTdqUoa+boOATF7Gzkq3jKO7LK/xXftIReawNWOSENvRZ EsIjGkuXb8Zd8X/6bisjMRz9RmkzkYJnELdZ9q5v/IkmzQ/QXvbMWvKRL3S9bwav m+ah/g+A3AmhXwc2y8CB+l4Oc73wt60C2CixkxLiDxKyIOMmkqLY3AWKG/vAkTwh r2w2xjma8KZ5s1wxRx4iAEiMzFiosW/xFXTeguUyE5lHb8ICpHdSdRfvse4PpAMU E4B8DbJ2cq7mJKeuCQ/acfQzq1AmKFtll63CtuDfdUKYVDF1YbAXTHRyns2h5iMK dUQKJHSWXRm6+z/mRj9ha5J8W5XhrjlYpShn0/htIVysPSk8x6zmAy6D+TZxA1Va VZ7nm7mcNk/LDbubJ7hO3FvYWLon94Gh1/oycXzc++AWQDFJko5tAzD7KillqibI 5XFMDo3YVolJBN4K7O+D6Djuj2j+0nx53oxxozafkFdrPFig2pcIEaod4vJysGSI O89Dso8JSL9+bSBSdYyHHNJQJqCt5Eo4j+1TjodiRrYgq0+8n6BPII6swuTRy+m5 4qr9UO5RtMWYWfWGF718mWYpRMXSjS9Vx3cVeiiNJvo8STjMGyakWNR9Z7ke2bKw CP8/Gna+emXwsr4U/3Bk =7E8B -----END PGP SIGNATURE----- --xcnhS64GIx7WDoKcMFtjCOCt22nBCUFDn-- From unknown Thu Mar 28 19:58:57 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#820: [X2Go-Dev] Bug#820: Bug#820: Bug#820: Patch: x2goserver: x2goruncommand - set IMEXIT="true" for gnome-terminal Reply-To: Mike Gabriel , 820@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.x2go.org Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Fri, 20 Mar 2015 11:20:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 820 X-X2Go-PR-Package: x2goserver X-X2Go-PR-Keywords: Received: via spool by 820-submit@bugs.x2go.org id=B820.142685023912795 (code B ref 820); Fri, 20 Mar 2015 11:20:02 +0000 Received: (at 820) by bugs.x2go.org; 20 Mar 2015 11:17:19 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id 328655DAA4 for <820@bugs.x2go.org>; Fri, 20 Mar 2015 12:17:17 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 8A58762; Fri, 20 Mar 2015 12:17:16 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 8B5253BF67; Fri, 20 Mar 2015 12:17:15 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q-lxvQvhFM6n; Fri, 20 Mar 2015 12:17:15 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTPS id 34CF03BB60; Fri, 20 Mar 2015 12:17:15 +0100 (CET) Received: from bifrost.das-netzwerkteam.de (bifrost.das-netzwerkteam.de [178.62.101.154]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Fri, 20 Mar 2015 11:17:15 +0000 Date: Fri, 20 Mar 2015 11:17:15 +0000 Message-ID: <20150320111715.Horde.w72RDoRLUhGT4SenOjUlAQ1@mail.das-netzwerkteam.de> From: Mike Gabriel To: Mihai Moldovan Cc: 820@bugs.x2go.org, Rok Mandeljc References: <550752A1.1070807@gmail.com> <5507BE76.1060309@ionic.de> <5507C377.4060008@ionic.de> <5507FD3E.90904@gmail.com> <55083D83.9000702@ionic.de> <20150317160503.Horde.w2PfHDjbkGaGJIzvi_LvJw8@mail.das-netzwerkteam.de> <550BA7B5.90105@ionic.de> In-Reply-To: <550BA7B5.90105@ionic.de> User-Agent: Internet Messaging Program (IMP) H5 (6.2.2) Accept-Language: de,en Organization: DAS-NETZWERKTEAM X-Originating-IP: 178.62.101.154 X-Remote-Browser: Mozilla/5.0 (X11; Linux x86_64; rv:32.0) Gecko/20100101 Firefox/32.0 Iceweasel/32.0 Content-Type: multipart/signed; boundary="=_uIXf4-XKukH2WraRvHeMJQ3"; protocol="application/pgp-signature"; micalg=pgp-sha1 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_uIXf4-XKukH2WraRvHeMJQ3 Content-Type: text/plain; charset=ISO-8859-1; format=flowed; DelSp=Yes Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fr 20 M=E4r 2015 05:53:09 CET, Mihai Moldovan wrote: > On 17.03.2015 05:05 PM, Mike Gabriel wrote: >> With gnome-terminal from GNOMEv2 IMEXIT needs to be false (because >> gnome-terminal (v2) does _not_ fork to background). >> >> With gnome-terminal from GNOMEv3 IMEXIT needs to be true (because >> gnome-terminal (v3) forks to background). > > Stefan just "submitted" another bug report yesterday in a private > conversion about another piece of software that needs special handling > via IMEXIT -- but likewise different values dependent on the specific > version used. > > I guess I should better handle that with a few new functions, to be able > to add other software and versions more flexible in the future. > > > > Mihai > > P.S.: a workaround for those issues is to use pubapps. Before you start working on this... Actually, the x2goruncommand stuff should be fully reworked. So that=20=20 TERMINAL,=20WEBBROWSER etc. are actually symlinks or .desktop files that=20= =20 the=20x2goruncommand refers to. Basically, I would fork every single application to background and=20=20 monitor=20its termination with other means (e.g. with the stdout/stderr=20= =20 blocker),=20so that IMEXIT would always be FALSE. Mike --=20 DAS-NETZWERKTEAM mike=20gabriel, herweg 7, 24357 fleckeby fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.x= fb --=_uIXf4-XKukH2WraRvHeMJQ3 Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJVDAG7AAoJEJr0azAldxsxcI4QALlmYKOV32X5OYPcO3M0htOy 4pA4wRamNePSQXa3KZWKLAjHzSeHb+JeASIuTKu5kGgCroEtARicEiLefBe6V68r pFmFIjq5M412WPutixDFu8QS6Dxr4meWW8G9i9Dh4AkDEQtizv6uEz6bc2nW2Fmr JPUOdLyQZOesudhlEH2JI1Z6leoTcyOBpAVa2alU+5jGu+PJuFWrx2fsvElw/QRE DahvWL+tl46YLAVUoLEWgfG4hlkzqemnr7LNIap5HY6Jeo5BBUao+jPkiiXm25vt JAO1SwNscgzlDW4NSxyZoAWWGg+fvUWEQRzkqEX81EDy0v+I7/MxrMknWnlUAoKl LN4noZAWbT4e1YGiPUrGyamQu6myRfBWjsZFSsLZkobz1nUUoRD8cGUKwVBs1O7P frnDqbWJDAkaH+73vKPYjEO1c0cgV5VveDBv7J0QbXNSoBI/rMVBOqqB0pOVf30T W51T3sqYuysMSOidShrbouQFN0nSttnL5eYWMZPveFAscHr2CDxj0/NgN8M4y/3W ZEyqNIlgATu1yFRjM5xIBmeHNoLAps2HpI0NlZv/CutB2tMEJJY3uPhF/l+FeiIv qdRJ+g1n7ARZ5ih5NVnF41inhQI0XdzezXX0xupal1VwqcNGSN0oZ5UnSSPktLvN dhWKyYRo7OGGKRakyPpj =L4+s -----END PGP SIGNATURE----- --=_uIXf4-XKukH2WraRvHeMJQ3--