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 A999BAAF9 for ; Wed, 28 Jun 2023 08:07:04 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 8BFBC1DE7A for ; Wed, 28 Jun 2023 08:06:34 +0200 (CEST) Received: from bastionodiso.odiso.net (bastionodiso.odiso.net [185.151.191.93]) (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 for ; Wed, 28 Jun 2023 08:06:32 +0200 (CEST) Received: from kvmformation3.odiso.net (formationkvm3.odiso.net [10.3.94.12]) by bastionodiso.odiso.net (Postfix) with ESMTP id D895F8002; Wed, 28 Jun 2023 08:06:30 +0200 (CEST) Received: by kvmformation3.odiso.net (Postfix, from userid 0) id C2D89241A47; Wed, 28 Jun 2023 08:06:30 +0200 (CEST) From: Alexandre Derumier To: pve-devel@lists.proxmox.com Date: Wed, 28 Jun 2023 08:06:28 +0200 Message-Id: <20230628060628.502358-1-aderumier@odiso.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.034 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy HEADER_FROM_DIFFERENT_DOMAINS 0.25 From and EnvelopeFrom 2nd level mail domains are different KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record T_SCC_BODY_TEXT_LINE -0.01 - URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox.com, shutdown.target] Subject: [pve-devel] [PATCH pve-cluster] pve-cluster.service : remove 127.0.1.1 from /etc/hosts 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: Wed, 28 Jun 2023 06:07:04 -0000 stock debian or some hosting company like ovh through cloudinit at each boot, add 127.0.1.1 in /etc/hosts. This is breaking pve-cluster start. fix: https://forum.proxmox.com/threads/proxmox-7-to-8-upgrade-problem-ovh.129678/ https://forum.proxmox.com/threads/update-7-to-8-issue-with-cloud-init.129669/#post-568172 https://forum.proxmox.com/threads/bookworm-installation-fails-with-pve-manager-dependency-error.129398/#post-568290 Signed-off-by: Alexandre Derumier --- debian/pve-cluster.service | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/pve-cluster.service b/debian/pve-cluster.service index 4327055..f6bdac2 100644 --- a/debian/pve-cluster.service +++ b/debian/pve-cluster.service @@ -14,6 +14,7 @@ Before=shutdown.target Conflicts=shutdown.target [Service] +ExecStartPre=/usr/bin/sed -i '/127.0.1.1/d' /etc/hosts ExecStart=/usr/bin/pmxcfs KillMode=mixed Restart=on-failure -- 2.39.2