summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/mattermost.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-06-20 20:52:04 +0000
committerGitHub <noreply@github.com>2018-06-20 20:52:04 +0000
commit8f4f748810e2d6a96522d22cf7c48d94e77fdbee (patch)
tree7ea530b0aa33c5c40f67c6298da1a2b364082d16 /nixos/modules/services/web-apps/mattermost.nix
parentec3957591f84f78e5606add6fd782abeeb5436ba (diff)
parentb83152c1352e7b9e49dd123d91496e446bae93e7 (diff)
downloadnixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar.gz
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar.bz2
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar.lz
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar.xz
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.tar.zst
nixpkgs-8f4f748810e2d6a96522d22cf7c48d94e77fdbee.zip
Merge pull request #42306 from ryantm/mattermost
mattermost: 4.10.0 -> 5.0.0
Diffstat (limited to 'nixos/modules/services/web-apps/mattermost.nix')
-rw-r--r--nixos/modules/services/web-apps/mattermost.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/web-apps/mattermost.nix b/nixos/modules/services/web-apps/mattermost.nix
index 277cbe35b78..96792c47cd2 100644
--- a/nixos/modules/services/web-apps/mattermost.nix
+++ b/nixos/modules/services/web-apps/mattermost.nix
@@ -25,7 +25,7 @@ in
 {
   options = {
     services.mattermost = {
-      enable = mkEnableOption "Mattermost chat platform";
+      enable = mkEnableOption "Mattermost chat server";
 
       statePath = mkOption {
         type = types.str;
@@ -167,7 +167,7 @@ in
       '';
 
       systemd.services.mattermost = {
-        description = "Mattermost chat platform service";
+        description = "Mattermost chat service";
         wantedBy = [ "multi-user.target" ];
         after = [ "network.target" "postgresql.service" ];
 
@@ -201,7 +201,7 @@ in
           PermissionsStartOnly = true;
           User = cfg.user;
           Group = cfg.group;
-          ExecStart = "${pkgs.mattermost}/bin/mattermost-platform";
+          ExecStart = "${pkgs.mattermost}/bin/mattermost";
           WorkingDirectory = "${cfg.statePath}";
           Restart = "always";
           RestartSec = "10";