From unknown Sun Jun 15 08:38:47 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36057] Fix for debootstrap Resent-From: Vagrant Cascadian Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 02 Jun 2019 18:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 36057 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: 36057@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.15595015705261 (code B ref -1); Sun, 02 Jun 2019 18:53:01 +0000 Received: (at submit) by debbugs.gnu.org; 2 Jun 2019 18:52:50 +0000 Received: from localhost ([127.0.0.1]:40873 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hXVb8-0001Mn-1d for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46281) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hXVb5-0001MX-2b for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:48 -0400 Received: from lists.gnu.org ([209.51.188.17]:45409) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXVaz-00066d-T4 for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXVay-0005fw-E9 for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:41 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXVax-00065J-0r for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:40 -0400 Received: from cascadia.aikidev.net ([2600:3c01:e000:267:0:a171:de7:c]:57506) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXVaw-00064B-OY for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:38 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 7503A1AA54 for ; Sun, 2 Jun 2019 11:52:32 -0700 (PDT) From: Vagrant Cascadian Date: Sun, 02 Jun 2019 11:52:27 -0700 Message-ID: <87zhmz251w.fsf@yucca> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01:e000:267:0:a171:de7:c X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain The attached patch includes a fix so that debootstrap can be run in a single patch. Currently, this fails: debootstrap --arch=amd64 buster $(mktemp -d) http://deb.debian.org/debian With this in the log: /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1056: chroot: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: grep: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: head: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: cut: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: sed: command not found The workaround documented in the package description is to use --foreign-arch and then follow up with a chroot call into to the newly created chroot and finish up running /debootstrap/debootstrap, but this fails for other reasons as well (/bin/sh in /debootstrap/debootstrap is set to /gnu/store.../bin/sh which isn't present in the Debian chroot)... and is a bit cumbersome for the end-user. I *think* the best fix for this is to fix the hard-coded PATH in several places places to also include $PATH, which I've proposed upstream: https://bugs.debian.org/929889 The attached patch approximates the proposed upstream patch for guix, and works for me so you can do a single call to debootstrap without the complicated chroot /debootstrap/debootstrap PATH-setting dance. live well, vagrant --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-debootstrap-Workaround-for-PATH-issues.patch Content-Transfer-Encoding: quoted-printable From=20bb00c031e0037eb8edd9db2ab06f630109237d0a Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 2 Jun 2019 11:34:33 -0700 Subject: [PATCH] gnu: debootstrap: Workaround for PATH issues. * gnu/packages/debian (debootstrap): [arguments]: Substitute PATH to include $PATH. [description]: Remove obsolete workaround from description. =2D-- gnu/packages/debian.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 1b401bc946..f94f49c51b 100644 =2D-- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -154,6 +154,11 @@ contains the archive keys used for that.") (("/usr") ubuntu)) (substitute* "debootstrap" (("=3D/usr") (string-append "=3D" out))) + ;; Ensure PATH works both in guix and within the debian chr= oot + ;; workaround for: https://bugs.debian.org/929889 + (substitute* "functions" + (("PATH=3D/sbin:/usr/sbin:/bin:/usr/bin") + "PATH=3D$PATH:/sbin:/usr/sbin:/bin:/usr/bin")) (substitute* (find-files "scripts" ".") (("/usr/share/zoneinfo") (string-append tzdata "/share/zo= neinfo"))) #t))) @@ -184,9 +189,5 @@ contains the archive keys used for that.") (description "Debootstrap is used to create a Debian base system from scratch, without requiring the availability of @code{dpkg} or @code{apt}. It does this by downloading .deb files from a mirror site, and carefully =2Dunpacking them into a directory which can eventually be chrooted into. =2D =2DIt is recommended to run @code{debootstrap --foreign --arch=3D...} and t= hen =2D@code{chroot} into the directory, set the PATH and run @code{debootstrap =2D--second-stage} after.") +unpacking them into a directory which can eventually be chrooted into.") (license license:gpl2))) =2D-=20 2.20.1 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXPQa6wAKCRDcUY/If5cW qiYzAQDME6cMcKU0+gdSLxXAZc5b3EbCMzyU/2pH+RcuuimZDgEAszaDSrarksys FJTDzNW1AHPy9JNMOvfJMr0hJqOrUQc= =TLtR -----END PGP SIGNATURE----- --==-=-=-- From unknown Sun Jun 15 08:38:47 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36057] Fix for debootstrap Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 05 Jun 2019 15:17:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36057 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: Vagrant Cascadian Cc: 36057@debbugs.gnu.org Received: via spool by 36057-submit@debbugs.gnu.org id=B36057.155974779913353 (code B ref 36057); Wed, 05 Jun 2019 15:17:01 +0000 Received: (at 36057) by debbugs.gnu.org; 5 Jun 2019 15:16:39 +0000 Received: from localhost ([127.0.0.1]:47900 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hYXeZ-0003TJ-Ik for submit@debbugs.gnu.org; Wed, 05 Jun 2019 11:16:39 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53865) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hYXeX-0003T2-Ch for 36057@debbugs.gnu.org; Wed, 05 Jun 2019 11:16:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:55442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hYXeR-0008Ge-SU; Wed, 05 Jun 2019 11:16:31 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=57162 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hYXeR-0007VA-Ee; Wed, 05 Jun 2019 11:16:31 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87zhmz251w.fsf@yucca> Date: Wed, 05 Jun 2019 17:16:30 +0200 In-Reply-To: <87zhmz251w.fsf@yucca> (Vagrant Cascadian's message of "Sun, 02 Jun 2019 11:52:27 -0700") Message-ID: <877ea012r5.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Vagrant, Vagrant Cascadian skribis: > From bb00c031e0037eb8edd9db2ab06f630109237d0a Mon Sep 17 00:00:00 2001 > From: Vagrant Cascadian > Date: Sun, 2 Jun 2019 11:34:33 -0700 > Subject: [PATCH] gnu: debootstrap: Workaround for PATH issues. > > * gnu/packages/debian (debootstrap): > [arguments]: Substitute PATH to include $PATH. > [description]: Remove obsolete workaround from description. It LGTM, and I think we can trust your judgment anyway. ;-) Thank you, Ludo=E2=80=99. From unknown Sun Jun 15 08:38:47 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Vagrant Cascadian Subject: bug#36057: closed (Re: [bug#36057] Fix for debootstrap) Message-ID: References: <878sug0y1y.fsf@yucca> <87zhmz251w.fsf@yucca> X-Gnu-PR-Message: they-closed 36057 X-Gnu-PR-Package: guix-patches Reply-To: 36057@debbugs.gnu.org Date: Wed, 05 Jun 2019 16:59:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1559753943-31208-1" This is a multi-part message in MIME format... ------------=_1559753943-31208-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #36057: Fix for debootstrap which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 36057@debbugs.gnu.org. --=20 36057: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D36057 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1559753943-31208-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 36057-done) by debbugs.gnu.org; 5 Jun 2019 16:58:14 +0000 Received: from localhost ([127.0.0.1]:48064 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hYZEr-00086G-Pn for submit@debbugs.gnu.org; Wed, 05 Jun 2019 12:58:14 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:40152) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hYZEp-00085n-4y for 36057-done@debbugs.gnu.org; Wed, 05 Jun 2019 12:58:11 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id EDAB01ABD5; Wed, 5 Jun 2019 09:58:04 -0700 (PDT) From: Vagrant Cascadian To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#36057] Fix for debootstrap In-Reply-To: <877ea012r5.fsf@gnu.org> References: <87zhmz251w.fsf@yucca> <877ea012r5.fsf@gnu.org> Date: Wed, 05 Jun 2019 09:58:01 -0700 Message-ID: <878sug0y1y.fsf@yucca> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 36057-done Cc: 36057-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 2019-06-05, Ludovic Court=C3=A8s wrote: > Vagrant Cascadian skribis: > >> From bb00c031e0037eb8edd9db2ab06f630109237d0a Mon Sep 17 00:00:00 2001 >> From: Vagrant Cascadian >> Date: Sun, 2 Jun 2019 11:34:33 -0700 >> Subject: [PATCH] gnu: debootstrap: Workaround for PATH issues. >> >> * gnu/packages/debian (debootstrap): >> [arguments]: Substitute PATH to include $PATH. >> [description]: Remove obsolete workaround from description. > > It LGTM, and I think we can trust your judgment anyway. ;-) Ok, pushed to master! live well, vagrant --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXPf0mQAKCRDcUY/If5cW qnkCAP4xeBd+MO0siHi2ZyTvwCIie7Zjcxz4X0/G2y9osZbf3QD/bxcHoUb+xo3j ELcCnkF0RG/WgxTyJnh33eZz9OxgEwk= =oP+m -----END PGP SIGNATURE----- --=-=-=-- ------------=_1559753943-31208-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 2 Jun 2019 18:52:50 +0000 Received: from localhost ([127.0.0.1]:40873 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hXVb8-0001Mn-1d for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:50 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46281) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hXVb5-0001MX-2b for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:48 -0400 Received: from lists.gnu.org ([209.51.188.17]:45409) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXVaz-00066d-T4 for submit@debbugs.gnu.org; Sun, 02 Jun 2019 14:52:41 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXVay-0005fw-E9 for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:41 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXVax-00065J-0r for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:40 -0400 Received: from cascadia.aikidev.net ([2600:3c01:e000:267:0:a171:de7:c]:57506) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXVaw-00064B-OY for guix-patches@gnu.org; Sun, 02 Jun 2019 14:52:38 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 7503A1AA54 for ; Sun, 2 Jun 2019 11:52:32 -0700 (PDT) From: Vagrant Cascadian To: guix-patches@gnu.org Subject: Fix for debootstrap Date: Sun, 02 Jun 2019 11:52:27 -0700 Message-ID: <87zhmz251w.fsf@yucca> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01:e000:267:0:a171:de7:c X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain The attached patch includes a fix so that debootstrap can be run in a single patch. Currently, this fails: debootstrap --arch=amd64 buster $(mktemp -d) http://deb.debian.org/debian With this in the log: /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1056: chroot: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: grep: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: head: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: cut: command not found /gnu/store/ah0rr88xmn28f32whhpbdcxwind0c74z-debootstrap-1.0.114/share/debootstrap/functions: line 1062: sed: command not found The workaround documented in the package description is to use --foreign-arch and then follow up with a chroot call into to the newly created chroot and finish up running /debootstrap/debootstrap, but this fails for other reasons as well (/bin/sh in /debootstrap/debootstrap is set to /gnu/store.../bin/sh which isn't present in the Debian chroot)... and is a bit cumbersome for the end-user. I *think* the best fix for this is to fix the hard-coded PATH in several places places to also include $PATH, which I've proposed upstream: https://bugs.debian.org/929889 The attached patch approximates the proposed upstream patch for guix, and works for me so you can do a single call to debootstrap without the complicated chroot /debootstrap/debootstrap PATH-setting dance. live well, vagrant --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-debootstrap-Workaround-for-PATH-issues.patch Content-Transfer-Encoding: quoted-printable From=20bb00c031e0037eb8edd9db2ab06f630109237d0a Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sun, 2 Jun 2019 11:34:33 -0700 Subject: [PATCH] gnu: debootstrap: Workaround for PATH issues. * gnu/packages/debian (debootstrap): [arguments]: Substitute PATH to include $PATH. [description]: Remove obsolete workaround from description. =2D-- gnu/packages/debian.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 1b401bc946..f94f49c51b 100644 =2D-- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -154,6 +154,11 @@ contains the archive keys used for that.") (("/usr") ubuntu)) (substitute* "debootstrap" (("=3D/usr") (string-append "=3D" out))) + ;; Ensure PATH works both in guix and within the debian chr= oot + ;; workaround for: https://bugs.debian.org/929889 + (substitute* "functions" + (("PATH=3D/sbin:/usr/sbin:/bin:/usr/bin") + "PATH=3D$PATH:/sbin:/usr/sbin:/bin:/usr/bin")) (substitute* (find-files "scripts" ".") (("/usr/share/zoneinfo") (string-append tzdata "/share/zo= neinfo"))) #t))) @@ -184,9 +189,5 @@ contains the archive keys used for that.") (description "Debootstrap is used to create a Debian base system from scratch, without requiring the availability of @code{dpkg} or @code{apt}. It does this by downloading .deb files from a mirror site, and carefully =2Dunpacking them into a directory which can eventually be chrooted into. =2D =2DIt is recommended to run @code{debootstrap --foreign --arch=3D...} and t= hen =2D@code{chroot} into the directory, set the PATH and run @code{debootstrap =2D--second-stage} after.") +unpacking them into a directory which can eventually be chrooted into.") (license license:gpl2))) =2D-=20 2.20.1 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCXPQa6wAKCRDcUY/If5cW qiYzAQDME6cMcKU0+gdSLxXAZc5b3EbCMzyU/2pH+RcuuimZDgEAszaDSrarksys FJTDzNW1AHPy9JNMOvfJMr0hJqOrUQc= =TLtR -----END PGP SIGNATURE----- --==-=-=-- ------------=_1559753943-31208-1--