From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 05F0660FA7 for ; Mon, 12 Oct 2020 12:22:12 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id ED785245D2 for ; Mon, 12 Oct 2020 12:21:41 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 52523245C6 for ; Mon, 12 Oct 2020 12:21:40 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 11B6045CDE for ; Mon, 12 Oct 2020 12:21:40 +0200 (CEST) To: pbs-devel@lists.proxmox.com, =?UTF-8?Q?Fabian_Gr=c3=bcnbichler?= References: <20201012101029.2613067-1-f.gruenbichler@proxmox.com> From: Stefan Reiter Message-ID: <354d4db1-1fe2-7851-0446-a49609b744f4@proxmox.com> Date: Mon, 12 Oct 2020 12:21:39 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: <20201012101029.2613067-1-f.gruenbichler@proxmox.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.040 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment NICE_REPLY_A -0.001 Looks like a legit reply (A) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: Re: [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2020 10:22:12 -0000 On 10/12/20 12:10 PM, Fabian Grünbichler wrote: > Signed-off-by: Fabian Grünbichler > --- > maybe we should drop the git variant from Cargo.toml altogether? > > README.rst | 4 ++-- > Cargo.toml | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/README.rst b/README.rst > index 76aad1ec..e2dbf466 100644 > --- a/README.rst > +++ b/README.rst > @@ -13,7 +13,7 @@ Versioning of proxmox helper crates > > To use current git master code of the proxmox* helper crates, add:: > > - git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox" > + git = "ssh://git.proxmox.com/git/proxmox" protocol should be git:// > > or:: > > @@ -43,7 +43,7 @@ Build > on Debian Buster > > Setup: > - 1. add 'deb http://repo.proxmox.com/staging/devel/ buster devel-10' to your sources.list > + 1. add 'deb http://download.proxmox.com/debian/devel/ buster main' to your sources.list > 2. [sudo] wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg > 3. [sudo] apt update > 4. [sudo] apt install devscripts debcargo > diff --git a/Cargo.toml b/Cargo.toml > index c4ab3335..abdc85e0 100644 > --- a/Cargo.toml > +++ b/Cargo.toml > @@ -39,7 +39,7 @@ percent-encoding = "2.1" > pin-utils = "0.1.0" > pathpatterns = "0.1.2" > proxmox = { version = "0.4.3", features = [ "sortable-macro", "api-macro", "websocket" ] } > -#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] } > +#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] } > #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] } > proxmox-fuse = "0.1.0" > pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] } >