mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
42 lines
855 B
Nix
42 lines
855 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")
|
|
'';
|
|
}
|
|
)
|