about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-06 23:23:46 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-06 23:40:30 +0100
commit8c972ce2c0c854bdfbd36d1b7fe94e6225dab968 (patch)
tree58ba8ace32ef53051377c56559a47bc66623354c /nixos/modules/services/monitoring
parentcff247a127aa8764bda9b029bb0123a3c55eb714 (diff)
downloadnixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar.gz
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar.bz2
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar.lz
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar.xz
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.tar.zst
nixlib-8c972ce2c0c854bdfbd36d1b7fe94e6225dab968.zip
nixos/grafana: fix deprecation warning by using grafana server instead of grafana-server
Deprecation warning: The standalone 'grafana-server' program is deprecated and will be removed in the future. Please update all uses of 'grafana-server' to 'grafana server'
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/grafana.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index 2d82fcb51620..5ac010bf81ee 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -1831,7 +1831,7 @@ in
         set -o errexit -o pipefail -o nounset -o errtrace
         shopt -s inherit_errexit
 
-        exec ${cfg.package}/bin/grafana-server -homepath ${cfg.dataDir} -config ${configFile}
+        exec ${cfg.package}/bin/grafana server -homepath ${cfg.dataDir} -config ${configFile}
       '';
       serviceConfig = {
         WorkingDirectory = cfg.dataDir;