From 5475b848597334cf2e0aa312fc232af78fa6c5c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 25 Jul 2020 22:57:27 +0200 Subject: [PATCH] nixos/tests/installer lvm: increase partition size We apparently didn't fit anymore. I don't think this test is meant to (also) check closure size. --- nixos/tests/installer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 22132073142..02b839fee3f 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -562,7 +562,7 @@ in { "sleep 1", "lvcreate --size 1G --name swap MyVolGroup", "sleep 1", - "lvcreate --size 2G --name nixos MyVolGroup", + "lvcreate --size 3G --name nixos MyVolGroup", "sleep 1", "mkswap -f /dev/MyVolGroup/swap -L swap", "swapon -L swap",