diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-05-17 22:48:06 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-05-17 22:53:36 +0300 |
commit | 10553b876348317dcbe77510b95f9703bd497b07 (patch) | |
tree | 6247428a2a8f16ac86715cbe59783a62c83a7639 /modules/apps/gnupg | |
parent | 971230d723d32734e1c23c67d1184d21589c3b85 (diff) | |
download | nixsap-10553b876348317dcbe77510b95f9703bd497b07.tar.gz |
gnupg: remove superfluous `-start`
Diffstat (limited to 'modules/apps/gnupg')
-rw-r--r-- | modules/apps/gnupg/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apps/gnupg/default.nix b/modules/apps/gnupg/default.nix index 7749990..955aa2b 100644 --- a/modules/apps/gnupg/default.nix +++ b/modules/apps/gnupg/default.nix @@ -31,7 +31,7 @@ let cp pubring.kbx $out ''; - start = pkgs.writeBashScriptBin "gnupg-${name}-start" '' + start = pkgs.writeBashScriptBin "gnupg-${name}" '' set -euo pipefail umask 0077 @@ -88,7 +88,7 @@ let ''; serviceConfig = { - ExecStart = "${start}/bin/gnupg-${name}-start"; + ExecStart = "${start}/bin/gnupg-${name}"; PermissionsStartOnly = true; Restart = "always"; Type = "forking"; |