rename logshipper -> logtap

- it matches the executable name
- it doesn't ship anything anyway, it's just plumbing
This commit is contained in:
Daniel Barlow
2025-10-05 15:13:07 +01:00
parent cacde953cb
commit a343e63231
5 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ let
pipecmds =
[ "${s6}/bin/s6-log -bpd3 -- ${cfg.script} 1" ]
++ (lib.optional (cfg ? persistent && cfg.persistent.enable) "/bin/tee /dev/pmsg0")
++ (lib.optional cfg.shipping.enable "${pkgs.logshipper}/bin/logtap ${cfg.shipping.socket} logshipper-socket-event");
++ (lib.optional cfg.shipping.enable "${pkgs.logtap}/bin/logtap ${cfg.shipping.socket} logshipper-socket-event");
in
''
#!${execline}/bin/execlineb -P

View File

@@ -100,7 +100,7 @@ in
levitate = callPackage ./levitate { };
libubootenv = callPackage ./libubootenv { };
linotify = callPackage ./linotify { };
logshipper = callPackage ./logshipper { };
logtap = callPackage ./logtap { };
lualinux = callPackage ./lualinux { };
# we need to build real lzma instead of using xz, because the lzma

View File

@@ -2,7 +2,7 @@
stdenv,
}:
stdenv.mkDerivation {
name = "logshipper";
name = "logtap";
makeFlags = [ "PREFIX=${placeholder "out"}" ];
src = ./.;
}