summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-05-02 02:53:32 -0500
committerWilliam A. Kennington III <william@wkennington.com>2014-08-28 13:35:36 -0700
commit4f096c044f987f036af3fc1888090e6567aaf7b1 (patch)
tree8a5f625e272c200637242c845b2293ccea7675fc /nixos/tests/installer.nix
parentc02bc3a9de319195597a16173e04357023e97643 (diff)
downloadnixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar.gz
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar.bz2
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar.lz
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar.xz
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.tar.zst
nixpkgs-4f096c044f987f036af3fc1888090e6567aaf7b1.zip
nixos/grub: Simplify detection of labels / uuids for provided device names
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index d15c43d29bb..0eb67eaa813 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -416,7 +416,7 @@ in {
     createPartitions = ''
       $machine->succeed(
         "sgdisk -Z /dev/vda",
-        "sgdisk -n 1:0:+1M -n 2:0:+1G -n 3:0:+100M -N 4 -t 1:ef02 -t 2:8300 -t 3:8200 -t 4:8300 -c 2:boot -c 4:root /dev/vda",
+        "sgdisk -n 1:0:+1M -n 2:0:+100M -n 3:0:+1G -N 4 -t 1:ef02 -t 2:8300 -t 3:8200 -t 4:8300 -c 2:boot -c 4:root /dev/vda",
         "mkswap /dev/vda3 -L swap",
         "swapon -L swap",
         "mkfs.ext4 -L boot /dev/vda2",