From effe0309ee503bc9b45c3d071004f606018e62c4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 17 Sep 2015 11:32:05 +0200 Subject: [PATCH] tests/virtualbox: Put name in log descriptions. Makes it easier to debug and find out for which machine a certain log socket has been started or stopped. Signed-off-by: aszlig --- nixos/tests/virtualbox.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix index 87c2e25e70b..a944c9caf35 100644 --- a/nixos/tests/virtualbox.nix +++ b/nixos/tests/virtualbox.nix @@ -172,7 +172,7 @@ import ./make-test.nix ({ pkgs, ... }: with pkgs.lib; let in { machine = { systemd.sockets."vboxtestlog-${name}" = { - description = "VirtualBox Test Machine Log Socket"; + description = "VirtualBox Test Machine Log Socket For ${name}"; wantedBy = [ "sockets.target" ]; before = [ "multi-user.target" ]; socketConfig.ListenStream = "/run/virtualbox-log-${name}.sock"; @@ -180,7 +180,7 @@ import ./make-test.nix ({ pkgs, ... }: with pkgs.lib; let }; systemd.services."vboxtestlog-${name}@" = { - description = "VirtualBox Test Machine Log"; + description = "VirtualBox Test Machine Log For ${name}"; serviceConfig.StandardInput = "socket"; serviceConfig.StandardOutput = "syslog"; serviceConfig.SyslogIdentifier = "GUEST-${name}";