From 78fba3983dab3593afdc7fcd579dad8a3b1c6326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 27 Sep 2023 08:13:25 +0200 Subject: [PATCH] make boot large enough in tests 100M is not enough and I see people just copying examples without putting in any extra thoughts https://github.com/TUM-DSE/doctor-cluster-config/pull/368 --- example/bcachefs.nix | 2 +- example/boot-raid1.nix | 4 ++-- example/legacy-table.nix | 4 ++-- example/luks-interactive-login.nix | 2 +- example/luks-lvm.nix | 2 +- example/luks-on-mdadm.nix | 2 +- example/lvm-raid.nix | 5 ++--- example/lvm-sizes-sort.nix | 2 +- example/simple-efi.nix | 2 +- example/swap.nix | 2 +- example/tmpfs.nix | 2 +- example/zfs-over-legacy.nix | 2 +- 12 files changed, 15 insertions(+), 16 deletions(-) diff --git a/example/bcachefs.nix b/example/bcachefs.nix index 3a47d04..417f11b 100644 --- a/example/bcachefs.nix +++ b/example/bcachefs.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - end = "100M"; + end = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/boot-raid1.nix b/example/boot-raid1.nix index 710cf31..39569c1 100644 --- a/example/boot-raid1.nix +++ b/example/boot-raid1.nix @@ -12,7 +12,7 @@ type = "EF02"; # for grub MBR }; ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "mdraid"; @@ -40,7 +40,7 @@ type = "EF02"; # for grub MBR }; ESP = { - size = "128M"; + size = "500M"; type = "EF00"; content = { type = "mdraid"; diff --git a/example/legacy-table.nix b/example/legacy-table.nix index 69b3b5c..98348ee 100644 --- a/example/legacy-table.nix +++ b/example/legacy-table.nix @@ -11,7 +11,7 @@ { name = "ESP"; start = "1M"; - end = "100M"; + end = "500M"; bootable = true; content = { type = "filesystem"; @@ -21,7 +21,7 @@ } { name = "root"; - start = "100M"; + start = "500M"; end = "100%"; part-type = "primary"; bootable = true; diff --git a/example/luks-interactive-login.nix b/example/luks-interactive-login.nix index 732f0b4..2622696 100644 --- a/example/luks-interactive-login.nix +++ b/example/luks-interactive-login.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/luks-lvm.nix b/example/luks-lvm.nix index 6e41891..f15fb6d 100644 --- a/example/luks-lvm.nix +++ b/example/luks-lvm.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/luks-on-mdadm.nix b/example/luks-on-mdadm.nix index 9513a08..6a33208 100644 --- a/example/luks-on-mdadm.nix +++ b/example/luks-on-mdadm.nix @@ -11,7 +11,7 @@ type = "EF02"; # for grub MBR }; ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "mdraid"; diff --git a/example/lvm-raid.nix b/example/lvm-raid.nix index e0a6287..2e36fff 100644 --- a/example/lvm-raid.nix +++ b/example/lvm-raid.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { boot = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "mdraid"; @@ -32,8 +32,7 @@ type = "gpt"; partitions = { boot = { - name = "boot"; - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "mdraid"; diff --git a/example/lvm-sizes-sort.nix b/example/lvm-sizes-sort.nix index 9504991..90b1576 100644 --- a/example/lvm-sizes-sort.nix +++ b/example/lvm-sizes-sort.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { boot = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/simple-efi.nix b/example/simple-efi.nix index 93ee5b1..d92c108 100644 --- a/example/simple-efi.nix +++ b/example/simple-efi.nix @@ -9,7 +9,7 @@ partitions = { ESP = { type = "EF00"; - size = "100M"; + size = "500M"; content = { type = "filesystem"; format = "vfat"; diff --git a/example/swap.nix b/example/swap.nix index 166ba16..089c004 100644 --- a/example/swap.nix +++ b/example/swap.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/tmpfs.nix b/example/tmpfs.nix index 72508e8..7c2493a 100644 --- a/example/tmpfs.nix +++ b/example/tmpfs.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem"; diff --git a/example/zfs-over-legacy.nix b/example/zfs-over-legacy.nix index 8dc77f3..92a38f1 100644 --- a/example/zfs-over-legacy.nix +++ b/example/zfs-over-legacy.nix @@ -8,7 +8,7 @@ type = "gpt"; partitions = { ESP = { - size = "100M"; + size = "500M"; type = "EF00"; content = { type = "filesystem";