diff options
author | Wouter Tinus <win.acme.simple@gmail.com> | 2020-07-14 22:00:44 +0200 |
---|---|---|
committer | Wouter Tinus <win.acme.simple@gmail.com> | 2020-07-14 22:00:44 +0200 |
commit | 5fd896846ad6ed5c9b999a023dc18c94a9617098 (patch) | |
tree | 3c4b2366170c2ce94f367e47fa646062cb0259aa | |
parent | 180e8e315fc4747d99a13316d09fd4caea557600 (diff) | |
download | letsencrypt-win-simple-5fd896846ad6ed5c9b999a023dc18c94a9617098.zip letsencrypt-win-simple-5fd896846ad6ed5c9b999a023dc18c94a9617098.tar.gz letsencrypt-win-simple-5fd896846ad6ed5c9b999a023dc18c94a9617098.tar.bz2 |
Generate .pfx and .pem files for legacy renewals being imported from 1.9.x to ease transition
-rw-r--r-- | src/main.lib/Services/Legacy/Importer.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.lib/Services/Legacy/Importer.cs b/src/main.lib/Services/Legacy/Importer.cs index efa06b3..b6d7db7 100644 --- a/src/main.lib/Services/Legacy/Importer.cs +++ b/src/main.lib/Services/Legacy/Importer.cs @@ -274,7 +274,15 @@ namespace PKISharp.WACS.Services.Legacy StoreName = legacy.CertificateStore, KeepExisting = legacy.KeepExisting == true }); - } + }
+ ret.StorePluginOptions.Add(new store.PemFilesOptions()
+ {
+ Path = _settings.Cache.Path
+ });
+ ret.StorePluginOptions.Add(new store.PfxFileOptions()
+ {
+ Path = _settings.Cache.Path
+ }); } public void ConvertInstallation(LegacyScheduledRenewal legacy, Renewal ret) |