diff options
| author | Josselin Poiret <dev@jpoiret.xyz> | 2022-09-22 15:12:45 +0200 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-22 16:00:44 +0200 |
| commit | d77612a91b2bf9955e2e538ca59a74dbe2e1a7d5 (patch) | |
| tree | 18d24bd9683da2727229c3ff03527d36e9289bbc /gnu/installer | |
| parent | 4814ec284f8a2870e6457c05f414ad31df4e3f57 (diff) | |
installer: Return partitions with crypt password as step result.
* gnu/installer/newt/partition.scm (run-partitioning-page): Do it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/installer')
| -rw-r--r-- | gnu/installer/newt/partition.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index eda34e0461c..2adb4922b41 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm | |||
| @@ -795,13 +795,13 @@ by pressing the Exit button.~%~%"))) | |||
| 795 | (user-partitions (run-page eligible-devices)) | 795 | (user-partitions (run-page eligible-devices)) |
| 796 | (user-partitions-with-pass (prompt-luks-passwords | 796 | (user-partitions-with-pass (prompt-luks-passwords |
| 797 | user-partitions)) | 797 | user-partitions)) |
| 798 | (form (draw-formatting-page user-partitions))) | 798 | (form (draw-formatting-page user-partitions-with-pass))) |
| 799 | ;; Make sure the disks are not in use before proceeding to formatting. | 799 | ;; Make sure the disks are not in use before proceeding to formatting. |
| 800 | (free-parted eligible-devices) | 800 | (free-parted eligible-devices) |
| 801 | (format-user-partitions user-partitions-with-pass) | 801 | (format-user-partitions user-partitions-with-pass) |
| 802 | (installer-log-line "formatted ~a user partitions" | 802 | (installer-log-line "formatted ~a user partitions" |
| 803 | (length user-partitions-with-pass)) | 803 | (length user-partitions-with-pass)) |
| 804 | (installer-log-line "user-partitions: ~a" user-partitions) | 804 | (installer-log-line "user-partitions: ~a" user-partitions-with-pass) |
| 805 | 805 | ||
| 806 | (destroy-form-and-pop form) | 806 | (destroy-form-and-pop form) |
| 807 | user-partitions)) | 807 | user-partitions-with-pass)) |
