Commit fd264ba8 authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

nixos/zfs: fix tests on zfsUnstable

parent 46d6445c
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -113,6 +113,8 @@ let
      };

      testScript = ''
        # TODO: Remove this when upgrading stable to zfs 2.2.0
        unstable = ${if enableUnstable then "True" else "False"};
        machine.wait_for_unit("multi-user.target")
        machine.succeed(
            "zpool status",
@@ -133,9 +135,10 @@ let
            )
            machine.crash()
            machine.wait_for_unit("multi-user.target")
            machine.succeed("zfs set sharesmb=on rpool/shared_smb")
            if not unstable:
                machine.succeed("zfs share rpool/shared_smb")
            machine.succeed(
                "zfs set sharesmb=on rpool/shared_smb",
                "zfs share rpool/shared_smb",
                "smbclient -gNL localhost | grep rpool_shared_smb",
                "umount /tmp/mnt",
                "zpool destroy rpool",