mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 12:03:21 +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
111 lines
3.3 KiB
Nix
111 lines
3.3 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
{
|
|
name = "systemd-journal-upload";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [
|
|
minijackson
|
|
raitobezarius
|
|
];
|
|
};
|
|
|
|
nodes.server =
|
|
{ nodes, ... }:
|
|
{
|
|
services.journald.remote = {
|
|
enable = true;
|
|
listen = "http";
|
|
settings.Remote = {
|
|
ServerCertificateFile = "/run/secrets/sever.cert.pem";
|
|
ServerKeyFile = "/run/secrets/sever.key.pem";
|
|
TrustedCertificateFile = "/run/secrets/ca.cert.pem";
|
|
Seal = true;
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ nodes.server.services.journald.remote.port ];
|
|
};
|
|
|
|
nodes.client =
|
|
{ lib, nodes, ... }:
|
|
{
|
|
services.journald.upload = {
|
|
enable = true;
|
|
settings.Upload = {
|
|
URL = "http://server:${toString nodes.server.services.journald.remote.port}";
|
|
ServerCertificateFile = "/run/secrets/client.cert.pem";
|
|
ServerKeyFile = "/run/secrets/client.key.pem";
|
|
TrustedCertificateFile = "/run/secrets/ca.cert.pem";
|
|
};
|
|
};
|
|
|
|
# Wait for the PEMs to arrive
|
|
systemd.services.systemd-journal-upload.wantedBy = lib.mkForce [ ];
|
|
systemd.paths.systemd-journal-upload = {
|
|
wantedBy = [ "default.target" ];
|
|
# This file must be copied last
|
|
pathConfig.PathExists = [ "/run/secrets/ca.cert.pem" ];
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
import subprocess
|
|
import tempfile
|
|
|
|
tmpdir_o = tempfile.TemporaryDirectory()
|
|
tmpdir = tmpdir_o.name
|
|
|
|
def generate_pems(domain: str):
|
|
subprocess.run(
|
|
[
|
|
"${pkgs.minica}/bin/minica",
|
|
"--ca-key=ca.key.pem",
|
|
"--ca-cert=ca.cert.pem",
|
|
f"--domains={domain}",
|
|
],
|
|
cwd=str(tmpdir),
|
|
)
|
|
|
|
with subtest("Creating keys and certificates"):
|
|
generate_pems("server")
|
|
generate_pems("client")
|
|
|
|
server.wait_for_unit("multi-user.target")
|
|
client.wait_for_unit("multi-user.target")
|
|
|
|
def copy_pems(machine: Machine, domain: str):
|
|
machine.succeed("mkdir /run/secrets")
|
|
machine.copy_from_host(
|
|
source=f"{tmpdir}/{domain}/cert.pem",
|
|
target=f"/run/secrets/{domain}.cert.pem",
|
|
)
|
|
machine.copy_from_host(
|
|
source=f"{tmpdir}/{domain}/key.pem",
|
|
target=f"/run/secrets/{domain}.key.pem",
|
|
)
|
|
# Should be last
|
|
machine.copy_from_host(
|
|
source=f"{tmpdir}/ca.cert.pem",
|
|
target="/run/secrets/ca.cert.pem",
|
|
)
|
|
|
|
with subtest("Copying keys and certificates"):
|
|
copy_pems(server, "server")
|
|
copy_pems(client, "client")
|
|
|
|
client.wait_for_unit("systemd-journal-upload.service")
|
|
# The journal upload should have started the remote service, triggered by
|
|
# the .socket unit
|
|
server.wait_for_unit("systemd-journal-remote.service")
|
|
|
|
identifier = "nixos-test"
|
|
message = "Hello from NixOS test infrastructure"
|
|
|
|
client.succeed(f"systemd-cat --identifier={identifier} <<< '{message}'")
|
|
server.wait_until_succeeds(
|
|
f"journalctl --file /var/log/journal/remote/remote-*.journal --identifier={identifier} | grep -F '{message}'"
|
|
)
|
|
'';
|
|
}
|
|
)
|