about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-24 01:12:24 +0100
committerajs124 <git@ajs124.de>2022-03-24 01:15:22 +0100
commit16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3 (patch)
tree78a8edf40930b6cb5efbf36e05a8719dfd042e9b /nixos
parent5b820f714dfefe6371197244b4f0bf6aa5e176ef (diff)
downloadnixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar.gz
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar.bz2
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar.lz
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar.xz
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.tar.zst
nixlib-16bce5f2fe28c9a0e2eae10f9c83e0211fa3dfb3.zip
nixosTests.installer.lvm: adjust root LV size
install ran out of disk space after 5b820f714dfefe6371197244b4f0bf6aa5e176ef
Diffstat (limited to 'nixos')
-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 5525c3117b79..2cfadf85c935 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -568,7 +568,7 @@ in {
           "pvcreate /dev/vda1 /dev/vda2",
           "vgcreate MyVolGroup /dev/vda1 /dev/vda2",
           "lvcreate --size 1G --name swap MyVolGroup",
-          "lvcreate --size 3G --name nixos MyVolGroup",
+          "lvcreate --size 6G --name nixos MyVolGroup",
           "mkswap -f /dev/MyVolGroup/swap -L swap",
           "swapon -L swap",
           "mkfs.xfs -L nixos /dev/MyVolGroup/nixos",