From e32566b1a3e4ad4847dce3ce551854e8a47ec806 Mon Sep 17 00:00:00 2001 From: Pogobanane Date: Wed, 20 Sep 2023 11:22:11 +0200 Subject: [PATCH] nixos-anywhere: rename --skip-disko to --skip-reformat --- README.md | 4 ++-- src/nixos-anywhere.sh | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 85e9f32..40e20b0 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ Options: do not reboot after installation, allowing further customization of the target installation. * --kexec url use another kexec tarball to bootstrap NixOS -* --skip-disko - dont format disks with disko +* --skip-reformat + dont format disks with disko (only mount) * --stop-after-disko exit after disko formating, you can then proceed to install manually or some other way * --extra-files files diff --git a/src/nixos-anywhere.sh b/src/nixos-anywhere.sh index 065282e..48a129b 100755 --- a/src/nixos-anywhere.sh +++ b/src/nixos-anywhere.sh @@ -15,8 +15,8 @@ Options: do not reboot after installation, allowing further customization of the target installation. * --kexec url use another kexec tarball to bootstrap NixOS -* --skip-disko - dont format disks with disko +* --skip-reformat + dont format disks with disko (only mount) * --stop-after-disko exit after disko formating, you can then proceed to install manually or some other way * --extra-files files @@ -91,8 +91,8 @@ while [[ $# -gt 0 ]]; do shift shift ;; - --skip-disko) - skip_disko=y + --skip-reformat) + skip_reformat=y ;; --stop-after-disko) stop_after_disko=y @@ -299,7 +299,7 @@ for path in "${!disk_encryption_keys[@]}"; do done nix_copy --to "ssh://$ssh_connection" "$disko_script" -if [[ ${skip_disko} == "y" ]]; then +if [[ ${skip_reformat} == "y" ]]; then echo "Skipping disko partitioning (only do mount)." ssh_ "$disko_script -m mount" else