2
0
genodepkgs/tests/lighttpd.nix

21 lines
511 B
Nix
Raw Normal View History

2020-10-23 22:39:33 +02:00
{
name = "lighttpd";
nodes = {
webserver = {
imports = [ ../nixos-modules/hardware.nix ];
services.lighttpd.enable = true;
2020-10-24 15:39:27 +02:00
genode.hardware.nic.eth1.driver = "virtio";
genode.hardware.nic.eth1.stack = "lwip";
2020-10-23 22:39:33 +02:00
};
client = {
imports = [ ../nixos-modules/hardware.nix ];
2020-10-24 15:39:27 +02:00
genode.hardware.nic.eth1.driver = "virtio";
genode.hardware.nic.eth1.stack = "lwip";
2020-10-23 22:39:33 +02:00
};
};
2020-10-24 15:39:27 +02:00
testScript = ''
start_all()
client.wait_until_serial_output("forever")
'';
2020-10-23 22:39:33 +02:00
}