aboutsummaryrefslogtreecommitdiff
path: root/modules/apps
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apps')
-rw-r--r--modules/apps/memcached/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apps/memcached/default.nix b/modules/apps/memcached/default.nix
index e963518..af418e9 100644
--- a/modules/apps/memcached/default.nix
+++ b/modules/apps/memcached/default.nix
@@ -29,7 +29,7 @@ let
args = flatten (mapAttrsToList show (explicit cfg.args));
- start = pkgs.writeBashScriptBin "memcached-${name}-start" ''
+ start = pkgs.writeBashScriptBin "memcached-${name}" ''
set -euo pipefail
umask 0027
@@ -43,7 +43,7 @@ let
wantedBy = [ "multi-user.target" ];
after = [ "keys.target" "network.target" "local-fs.target" ];
serviceConfig = {
- ExecStart = "${start}/bin/memcached-${name}-start";
+ ExecStart = "${start}/bin/memcached-${name}";
Restart = "always";
User = cfg.user;
};