2024-04-12 14:40:14 +02:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
2016-09-30 21:24:18 +02:00
|
|
|
name = "samba";
|
|
|
|
|
2024-04-12 14:40:14 +02:00
|
|
|
meta.maintainers = [ lib.maintainers.anthonyroussel ];
|
2016-09-30 21:24:18 +02:00
|
|
|
|
2024-04-08 22:34:05 +02:00
|
|
|
nodes = {
|
|
|
|
client =
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
virtualisation.fileSystems = {
|
|
|
|
"/public" = {
|
|
|
|
fsType = "cifs";
|
|
|
|
device = "//server/public";
|
|
|
|
options = [ "guest" ];
|
|
|
|
};
|
2016-09-30 21:24:18 +02:00
|
|
|
};
|
2024-04-08 22:34:05 +02:00
|
|
|
};
|
2016-09-30 21:24:18 +02:00
|
|
|
|
2024-04-08 22:34:05 +02:00
|
|
|
server =
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
services.samba = {
|
|
|
|
enable = true;
|
|
|
|
openFirewall = true;
|
|
|
|
settings = {
|
|
|
|
"public" = {
|
|
|
|
"path" = "/public";
|
2016-09-30 21:24:18 +02:00
|
|
|
"read only" = true;
|
2024-04-08 22:34:05 +02:00
|
|
|
"browseable" = "yes";
|
2016-09-30 21:24:18 +02:00
|
|
|
"guest ok" = "yes";
|
2024-04-08 22:34:05 +02:00
|
|
|
"comment" = "Public samba share.";
|
2016-09-30 21:24:18 +02:00
|
|
|
};
|
2024-04-08 22:34:05 +02:00
|
|
|
};
|
2016-09-30 21:24:18 +02:00
|
|
|
};
|
2024-04-08 22:34:05 +02:00
|
|
|
};
|
|
|
|
};
|
2016-09-30 21:24:18 +02:00
|
|
|
|
2024-04-08 22:34:05 +02:00
|
|
|
testScript = ''
|
|
|
|
server.start()
|
|
|
|
server.wait_for_unit("samba.target")
|
|
|
|
server.succeed("mkdir -p /public; echo bar > /public/foo")
|
2016-09-30 21:24:18 +02:00
|
|
|
|
2024-04-08 22:34:05 +02:00
|
|
|
client.start()
|
|
|
|
client.wait_for_unit("remote-fs.target")
|
|
|
|
client.succeed("[[ $(cat /public/foo) = bar ]]")
|
|
|
|
'';
|
2016-09-30 21:24:18 +02:00
|
|
|
})
|