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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 57920633A1 for ; Tue, 9 Feb 2021 16:45:33 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 4774D2F5F2 for ; Tue, 9 Feb 2021 16:45:33 +0100 (CET) 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) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 384F52F5E0 for ; Tue, 9 Feb 2021 16:45:32 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 07C0246102 for ; Tue, 9 Feb 2021 16:45:32 +0100 (CET) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Tue, 9 Feb 2021 16:45:30 +0100 Message-Id: <20210209154531.11093-1-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.020 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment 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: [pve-devel] [PATCH v2 ha-manager] ha-simulator: add xauth dependency X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Feb 2021 15:45:33 -0000 When installing the ha-simulator on a PVE node to start it via ssh with x11 forwarding, the xauth package helps to avoid `Unable to init server: Could not connect: Connection refused` errors. Placing it in the suggests to avoid possible dependency issues which could pop up when installing this package on other systems with e.g. wayland instead of x11. Signed-off-by: Aaron Lauterer --- v2: making it a suggestion instead of a hard dependency debian/control | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control b/debian/control index 7b4ffb0..f1ec771 100644 --- a/debian/control +++ b/debian/control @@ -48,5 +48,6 @@ Depends: libclone-perl, liburi-perl, ${misc:Depends}, ${perl:Depends}, +Suggests: xauth, Description: Proxmox VE HA Simulator This is a simple GUI to simulate the behavior of a Proxmox VE HA cluster. -- 2.20.1