v2.1.8 bugfix missing functions
This commit is contained in:
parent
7b4089ecb9
commit
1aa724b6f8
9
index.js
9
index.js
|
@ -20,6 +20,7 @@ var path = require('path');
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
var readFileAsync = util.promisify(fs.readFile);
|
var readFileAsync = util.promisify(fs.readFile);
|
||||||
var readdirAsync = util.promisify(fs.readdir);
|
var readdirAsync = util.promisify(fs.readdir);
|
||||||
|
var writeFileAsync = util.promisify(fs.writeFile);
|
||||||
var statAsync = util.promisify(fs.stat);
|
var statAsync = util.promisify(fs.stat);
|
||||||
var sfs = require('safe-replace');
|
var sfs = require('safe-replace');
|
||||||
var os = require('os');
|
var os = require('os');
|
||||||
|
@ -194,7 +195,7 @@ module.exports.create = function (configs) {
|
||||||
key = keypair.privateKeyPem;
|
key = keypair.privateKeyPem;
|
||||||
}
|
}
|
||||||
|
|
||||||
return sfs.writeFileAsync(keypath, key, 'ascii').then(function () {
|
return writeFileAsync(keypath, key, 'ascii').then(function () {
|
||||||
return keypair;
|
return keypair;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -517,9 +518,9 @@ module.exports.create = function (configs) {
|
||||||
// TODO abstract file writing
|
// TODO abstract file writing
|
||||||
return PromiseA.all([
|
return PromiseA.all([
|
||||||
// meta.json {"creation_host": "ns1.redirect-www.org", "creation_dt": "2015-12-11T04:14:38Z"}
|
// meta.json {"creation_host": "ns1.redirect-www.org", "creation_dt": "2015-12-11T04:14:38Z"}
|
||||||
sfs.writeFileAsync(path.join(accountDir, 'meta.json'), JSON.stringify(accountMeta), 'utf8')
|
writeFileAsync(path.join(accountDir, 'meta.json'), JSON.stringify(accountMeta), 'utf8')
|
||||||
// private_key.json { "e", "d", "n", "q", "p", "kty", "qi", "dp", "dq" }
|
// private_key.json { "e", "d", "n", "q", "p", "kty", "qi", "dp", "dq" }
|
||||||
, sfs.writeFileAsync(path.join(accountDir, 'private_key.json'), JSON.stringify(reg.keypair.privateKeyJwk), 'utf8')
|
, writeFileAsync(path.join(accountDir, 'private_key.json'), JSON.stringify(reg.keypair.privateKeyJwk), 'utf8')
|
||||||
// regr.json:
|
// regr.json:
|
||||||
/*
|
/*
|
||||||
{ body: { contact: [ 'mailto:coolaj86@gmail.com' ],
|
{ body: { contact: [ 'mailto:coolaj86@gmail.com' ],
|
||||||
|
@ -529,7 +530,7 @@ module.exports.create = function (configs) {
|
||||||
new_authzr_uri: 'https://acme-v01.api.letsencrypt.org/acme/new-authz',
|
new_authzr_uri: 'https://acme-v01.api.letsencrypt.org/acme/new-authz',
|
||||||
terms_of_service: 'https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf' }
|
terms_of_service: 'https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf' }
|
||||||
*/
|
*/
|
||||||
, sfs.writeFileAsync(path.join(accountDir, 'regr.json'),
|
, writeFileAsync(path.join(accountDir, 'regr.json'),
|
||||||
JSON.stringify(regrBody),
|
JSON.stringify(regrBody),
|
||||||
'utf8')
|
'utf8')
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "le-store-certbot",
|
"name": "le-store-certbot",
|
||||||
"version": "2.1.7",
|
"version": "2.1.8",
|
||||||
"description": "The \"certbot\" storage strategy for Greenlock.js",
|
"description": "The \"certbot\" storage strategy for Greenlock.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue