about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-02-26 10:48:55 +0000
committerzimbatm <zimbatm@zimbatm.com>2016-02-26 10:48:55 +0000
commitc86e10c1156ba1d880f059e3cb88ea2cbfb594db (patch)
tree8f22d42e2b8e73460d2f16a60377689940ad3010 /nixos
parentd8c3a83b5c4c60baa655aaa64e15ebf7b237b2c9 (diff)
parent629a89343eb52469d3edb1ef7f586e4cad0275c3 (diff)
Merge pull request #13469 from tg-x/acme-external
simp_le: external_pem.sh plugin is now called external.sh
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/security/acme.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix
index 3d25e811e670f..c5cd0fb60ee9a 100644
--- a/nixos/modules/security/acme.nix
+++ b/nixos/modules/security/acme.nix
@@ -56,7 +56,7 @@ let
 
       plugins = mkOption {
         type = types.listOf (types.enum [
-          "cert.der" "cert.pem" "chain.pem" "external_pem.sh"
+          "cert.der" "cert.pem" "chain.pem" "external.sh"
           "fullchain.pem" "full.pem" "key.der" "key.pem" "account_key.json"
         ]);
         default = [ "fullchain.pem" "key.pem" "account_key.json" ];