5858d84658
Since cifs-utils 6.12, smbinfo needs Python to be usable.
Issue introduced in 033208fd46
.
13 lines
406 B
Nix
13 lines
406 B
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "cifs-utils";
|
|
|
|
machine = { pkgs, ... }: { environment.systemPackages = [ pkgs.cifs-utils ]; };
|
|
|
|
testScript = ''
|
|
machine.succeed("smbinfo -h")
|
|
machine.succeed("smb2-quota -h")
|
|
assert "${pkgs.cifs-utils.version}" in machine.succeed("cifs.upcall -v")
|
|
assert "${pkgs.cifs-utils.version}" in machine.succeed("mount.cifs -V")
|
|
'';
|
|
})
|