From eecfbe397a82d53bdfbe6527556d5ff3e0a10c30 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 9 Dec 2023 13:57:08 +0100 Subject: [PATCH] nixos/(tests/)journald-(remote|upload|gateway): add raitobezarius as a maintainer --- nixos/modules/system/boot/systemd/journald-gateway.nix | 1 + nixos/modules/system/boot/systemd/journald-remote.nix | 1 + nixos/modules/system/boot/systemd/journald-upload.nix | 1 + nixos/tests/systemd-journal-gateway.nix | 2 +- nixos/tests/systemd-journal-upload.nix | 2 +- 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/systemd/journald-gateway.nix b/nixos/modules/system/boot/systemd/journald-gateway.nix index 3fcdcd2378b6..854965282344 100644 --- a/nixos/modules/system/boot/systemd/journald-gateway.nix +++ b/nixos/modules/system/boot/systemd/journald-gateway.nix @@ -9,6 +9,7 @@ let }; in { + meta.maintainers = [ lib.maintainers.raitobezarius ]; options.services.journald.gateway = { enable = lib.mkEnableOption "the HTTP gateway to the journal"; diff --git a/nixos/modules/system/boot/systemd/journald-remote.nix b/nixos/modules/system/boot/systemd/journald-remote.nix index e386f10c6f21..57a0a133e1c6 100644 --- a/nixos/modules/system/boot/systemd/journald-remote.nix +++ b/nixos/modules/system/boot/systemd/journald-remote.nix @@ -11,6 +11,7 @@ let }; in { + meta.maintainers = [ lib.maintainers.raitobezarius ]; options.services.journald.remote = { enable = lib.mkEnableOption "receiving systemd journals from the network"; diff --git a/nixos/modules/system/boot/systemd/journald-upload.nix b/nixos/modules/system/boot/systemd/journald-upload.nix index 42d169a2235c..6421e5fa486f 100644 --- a/nixos/modules/system/boot/systemd/journald-upload.nix +++ b/nixos/modules/system/boot/systemd/journald-upload.nix @@ -5,6 +5,7 @@ let format = pkgs.formats.systemd; in { + meta.maintainers = [ lib.maintainers.raitobezarius ]; options.services.journald.upload = { enable = lib.mkEnableOption "uploading the systemd journal to a remote server"; diff --git a/nixos/tests/systemd-journal-gateway.nix b/nixos/tests/systemd-journal-gateway.nix index 735e994bb882..1d20943f2388 100644 --- a/nixos/tests/systemd-journal-gateway.nix +++ b/nixos/tests/systemd-journal-gateway.nix @@ -2,7 +2,7 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { name = "systemd-journal-gateway"; meta = with pkgs.lib.maintainers; { - maintainers = [ minijackson ]; + maintainers = [ minijackson raitobezarius ]; }; # Named client for coherence with the systemd-journal-upload test, and for diff --git a/nixos/tests/systemd-journal-upload.nix b/nixos/tests/systemd-journal-upload.nix index 67859aa891e2..4486a1e60b00 100644 --- a/nixos/tests/systemd-journal-upload.nix +++ b/nixos/tests/systemd-journal-upload.nix @@ -2,7 +2,7 @@ import ./make-test-python.nix ({ pkgs, ... }: { name = "systemd-journal-upload"; meta = with pkgs.lib.maintainers; { - maintainers = [ minijackson ]; + maintainers = [ minijackson raitoezarius ]; }; nodes.server = { nodes, ... }: {