summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2023-06-15 19:25:37 +0200
committerJörg Thalheim <joerg@thalheim.io>2023-07-01 17:10:11 +0200
commitaf57956199bc26612c6d443c101374f7ed5c1ee9 (patch)
treef01dc72e533834501a688590032e200e2e0fcbba /nixos/tests/installer.nix
parent4d719f101c28bede334298c026a7fcb3e19553a5 (diff)
downloadnixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar.gz
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar.bz2
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar.lz
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar.xz
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.tar.zst
nixpkgs-af57956199bc26612c6d443c101374f7ed5c1ee9.zip
nixos/test/bcachefs: fix password input
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 1f575f63bee..4f4b9151884 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -834,7 +834,7 @@ in {
         "keyctl link @u @s",
         "echo password | mkfs.bcachefs -L root --encrypted /dev/vda3",
         "echo password | bcachefs unlock /dev/vda3",
-        "mount -t bcachefs /dev/vda3 /mnt",
+        "echo password | mount -t bcachefs /dev/vda3 /mnt",
         "mkfs.ext3 -L boot /dev/vda1",
         "mkdir -p /mnt/boot",
         "mount /dev/vda1 /mnt/boot",