about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2022-06-07 06:53:15 -0400
committerhappysalada <raphael@megzari.com>2022-06-07 06:53:15 -0400
commitf5ef819e24c45331636ad28861bce952f25b2fae (patch)
treecd991563108a0e1f59fcdca38d945b46adfcc0e0 /nixos
parent6dd66a05930d0ffc11796466cb6dea24945f625e (diff)
mimir: switch pname to mimir
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/mimir.nix2
-rw-r--r--nixos/tests/all-tests.nix2
-rw-r--r--nixos/tests/mimir.nix (renamed from nixos/tests/grafana-mimir.nix)2
3 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/monitoring/mimir.nix b/nixos/modules/services/monitoring/mimir.nix
index f85f3ab02c37e..83c0b23c59dd8 100644
--- a/nixos/modules/services/monitoring/mimir.nix
+++ b/nixos/modules/services/monitoring/mimir.nix
@@ -53,7 +53,7 @@ in {
                else cfg.configFile;
       in
       {
-        ExecStart = "${pkgs.grafana-mimir}/bin/mimir --config.file=${conf}";
+        ExecStart = "${pkgs.mimir}/bin/mimir --config.file=${conf}";
         DynamicUser = true;
         Restart = "always";
         ProtectSystem = "full";
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 0f75548ff6fda..1064d62da9304 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -170,7 +170,7 @@ in {
   frr = handleTest ./frr.nix {};
   fsck = handleTest ./fsck.nix {};
   ft2-clone = handleTest ./ft2-clone.nix {};
-  grafana-mimir = handleTest ./grafana-mimir.nix {};
+  mimir = handleTest ./mimir.nix {};
   gerrit = handleTest ./gerrit.nix {};
   geth = handleTest ./geth.nix {};
   ghostunnel = handleTest ./ghostunnel.nix {};
diff --git a/nixos/tests/grafana-mimir.nix b/nixos/tests/mimir.nix
index 0aafa956f0be2..f1b30d261472b 100644
--- a/nixos/tests/grafana-mimir.nix
+++ b/nixos/tests/mimir.nix
@@ -1,5 +1,5 @@
 import ./make-test-python.nix ({ pkgs, ... }: {
-  name = "grafana-mimir";
+  name = "mimir";
   nodes = {
     server = { ... }: {
       environment.systemPackages = [ pkgs.jq ];