about summary refs log tree commit diff
path: root/nixos/tests/taskserver.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-04-05 18:40:15 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-04-05 18:53:31 +0200
commit2d8961705249a9a144e2f7d944e04fd938b4a2c9 (patch)
treefa15a28d9767b5bce0c986921be335621cd78987 /nixos/tests/taskserver.nix
parent78925e4a90f838c0a977fe22b2c39a004b931fd3 (diff)
nixos/taskserver: Rename nixos-taskdctl
Using nixos-taskserver is more verbose but less cryptic and I think it
fits the purpose better because it can't be confused to be a wrapper
around the taskdctl command from the upstream project as
nixos-taskserver shares no commonalities with it.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixos/tests/taskserver.nix')
-rw-r--r--nixos/tests/taskserver.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/taskserver.nix b/nixos/tests/taskserver.nix
index 927dcbd9b28b5..61f2b06a7f746 100644
--- a/nixos/tests/taskserver.nix
+++ b/nixos/tests/taskserver.nix
@@ -50,7 +50,7 @@ import ./make-test.nix {
           );
 
           my $exportinfo = $server->succeed(
-            "nixos-taskdctl export-user $org $user"
+            "nixos-taskserver export-user $org $user"
           );
 
           $exportinfo =~ s/'/'\\'''/g;
@@ -70,9 +70,9 @@ import ./make-test.nix {
     $server->waitForUnit("taskserver.service");
 
     $server->succeed(
-      "nixos-taskdctl list-users testOrganisation | grep -qxF alice",
-      "nixos-taskdctl list-users testOrganisation | grep -qxF foo",
-      "nixos-taskdctl list-users anotherOrganisation | grep -qxF bob"
+      "nixos-taskserver list-users testOrganisation | grep -qxF alice",
+      "nixos-taskserver list-users testOrganisation | grep -qxF foo",
+      "nixos-taskserver list-users anotherOrganisation | grep -qxF bob"
     );
 
     $server->waitForOpenPort(${portStr});