mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
62 lines
1.9 KiB
Nix
62 lines
1.9 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, lib, ... }:
|
|
{
|
|
name = "containers-reloadable";
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ danbst ];
|
|
};
|
|
|
|
nodes = {
|
|
machine =
|
|
{ lib, ... }:
|
|
{
|
|
containers.test1 = {
|
|
autoStart = true;
|
|
config.environment.etc.check.text = "client_base";
|
|
};
|
|
|
|
# prevent make-test-python.nix to change IP
|
|
networking.interfaces.eth1.ipv4.addresses = lib.mkOverride 0 [ ];
|
|
|
|
specialisation.c1.configuration = {
|
|
containers.test1.config = {
|
|
environment.etc.check.text = lib.mkForce "client_c1";
|
|
services.httpd.enable = true;
|
|
services.httpd.adminAddr = "nixos@example.com";
|
|
};
|
|
};
|
|
|
|
specialisation.c2.configuration = {
|
|
containers.test1.config = {
|
|
environment.etc.check.text = lib.mkForce "client_c2";
|
|
services.nginx.enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.start()
|
|
machine.wait_for_unit("default.target")
|
|
|
|
assert "client_base" in machine.succeed("nixos-container run test1 cat /etc/check")
|
|
|
|
with subtest("httpd is available after activating config1"):
|
|
machine.succeed(
|
|
"/run/booted-system/specialisation/c1/bin/switch-to-configuration test >&2",
|
|
"[[ $(nixos-container run test1 cat /etc/check) == client_c1 ]] >&2",
|
|
"systemctl status httpd -M test1 >&2",
|
|
)
|
|
|
|
with subtest("httpd is not available any longer after switching to config2"):
|
|
machine.succeed(
|
|
"/run/booted-system/specialisation/c2/bin/switch-to-configuration test >&2",
|
|
"[[ $(nixos-container run test1 cat /etc/check) == client_c2 ]] >&2",
|
|
"systemctl status nginx -M test1 >&2",
|
|
)
|
|
machine.fail("systemctl status httpd -M test1 >&2")
|
|
'';
|
|
|
|
}
|
|
)
|