From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 22 09:13:29 2022 Received: (at 57983) by debbugs.gnu.org; 22 Sep 2022 13:13:29 +0000 Received: from localhost ([127.0.0.1]:36665 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1obM1B-0003xv-7I for submit@debbugs.gnu.org; Thu, 22 Sep 2022 09:13:29 -0400 Received: from jpoiret.xyz ([206.189.101.64]:47212) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1obM17-0003xH-1A for 57983@debbugs.gnu.org; Thu, 22 Sep 2022 09:13:27 -0400 Received: from authenticated-user (jpoiret.xyz [206.189.101.64]) by jpoiret.xyz (Postfix) with ESMTPA id 20AAC185311; Thu, 22 Sep 2022 13:13:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jpoiret.xyz; s=dkim; t=1663852404; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VW8ZZxf+93uacGIZTzFU8D3y3vLct4w+GW0cG34rtnU=; b=fuByOvVDIChg/Ua/EhD/Nn4oQzAFnoTRYX+1woRNKywxv5185YyKjoGyOB9gQBkmkqBab+ IDkMxs8AvejF5xyCYPJw+UWo7tUbk/PbZ6qOEztdVDWgYJDlNVRMc2ndEz0F+bg8mAvZI3 42/XNWNDFfYTFWfKyOvT2hrFssUq8XCl6l2Du9QDfN46jV4CyA/TFObk5G9hxotHAtA5B7 vEyeXZ+1QuBnOQ/czJAE2jROgfk0twMHqFVfeBvFhtQHEoLDW+7wNsXNBDGgRXMBq6n3Uv zBjZ8Ygon8BAXKXgEMgSNAY1dMwTH5QVCfi2gjcKV9rcDLqiQE0M8MPjKIW4Ug== From: Josselin Poiret To: Mathieu Othacehe , Dan Finlay Subject: [PATCH 2/4] installer: Return partitions with crypt password as step result. Date: Thu, 22 Sep 2022 15:12:45 +0200 Message-Id: <04942e8af510ce57d06ca27590d3a1bf8bbfd0d2.1663852053.git.dev@jpoiret.xyz> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Authentication-Results: jpoiret.xyz; auth=pass smtp.auth=jpoiret@jpoiret.xyz smtp.mailfrom=dev@jpoiret.xyz X-Spamd-Bar: / X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/installer/newt/partition.scm (run-partitioning-page): Do it. --- gnu/installer/newt/partition.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index eda34e0461..2adb4922b4 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -7 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: jpoiret.xyz (xyz)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 FROM_SUSPICIOUS_NTLD From abused NTLD X-Debbugs-Envelope-To: 57983 Cc: Josselin Poiret , 57983@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 (+) * gnu/installer/newt/partition.scm (run-partitioning-page): Do it. --- gnu/installer/newt/partition.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index eda34e0461..2adb4922b4 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -795,13 +795,13 @@ (define (run-page devices) (user-partitions (run-page eligible-devices)) (user-partitions-with-pass (prompt-luks-passwords user-partitions)) - (form (draw-formatting-page user-partitions))) + (form (draw-formatting-page user-partitions-with-pass))) ;; Make sure the disks are not in use before proceeding to formatting. (free-parted eligible-devices) (format-user-partitions user-partitions-with-pass) (installer-log-line "formatted ~a user partitions" (length user-partitions-with-pass)) - (installer-log-line "user-partitions: ~a" user-partitions) + (installer-log-line "user-partitions: ~a" user-partitions-with-pass) (destroy-form-and-pop form) - user-partitions)) + user-partitions-with-pass)) -- 2.37.2