mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
32 lines
754 B
Nix
32 lines
754 B
Nix
import ../make-test-python.nix ({ pkgs, lib, incus ? pkgs.incus-lts, ... } :
|
|
|
|
{
|
|
name = "incus-socket-activated";
|
|
|
|
meta = {
|
|
maintainers = lib.teams.lxc.members;
|
|
};
|
|
|
|
nodes.machine = { lib, ... }: {
|
|
virtualisation = {
|
|
incus = {
|
|
enable = true;
|
|
package = incus;
|
|
socketActivation = true;
|
|
};
|
|
};
|
|
networking.nftables.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("incus.socket")
|
|
|
|
# ensure service is not running by default
|
|
machine.fail("systemctl is-active incus.service")
|
|
machine.fail("systemctl is-active incus-preseed.service")
|
|
|
|
# access the socket and ensure the service starts
|
|
machine.succeed("incus list")
|
|
machine.wait_for_unit("incus.service")
|
|
'';
|
|
})
|