about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-09-17 11:32:05 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-09-17 12:31:59 +0200
commiteffe0309ee503bc9b45c3d071004f606018e62c4 (patch)
tree6dfdca18d2095d58b6f3daf3115d717a72afb69e /nixos/tests
parent29f535761a4fa2dee2be51cee5bc0bd7e8475b5d (diff)
downloadnixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar.gz
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar.bz2
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar.lz
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar.xz
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.tar.zst
nixlib-effe0309ee503bc9b45c3d071004f606018e62c4.zip
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 <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/virtualbox.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix
index 87c2e25e70b2..a944c9caf356 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}";