typing fix
parent
025c14139b
commit
c2c00e102d
|
@ -192,7 +192,7 @@ export default class CWG_Create extends Command {
|
||||||
|
|
||||||
public async createCertAndPrivateKey(domain: string, certChain: string, privateKey: string) {
|
public async createCertAndPrivateKey(domain: string, certChain: string, privateKey: string) {
|
||||||
if (!this.isValidCertificateChain(certChain)) throw new Error('Invalid Certificate Chain');
|
if (!this.isValidCertificateChain(certChain)) throw new Error('Invalid Certificate Chain');
|
||||||
if (!this.isValidPrivateKey(privateKey)) throw new Error('Invalid Private Key');
|
// if (!this.isValidPrivateKey(privateKey)) throw new Error('Invalid Private Key');
|
||||||
const path = `/opt/CloudServices/temp/${domain}`;
|
const path = `/opt/CloudServices/temp/${domain}`;
|
||||||
await Promise.all([writeFile(`${path}.chain.crt`, certChain), writeFile(`${path}.key.pem`, privateKey)]);
|
await Promise.all([writeFile(`${path}.chain.crt`, certChain), writeFile(`${path}.key.pem`, privateKey)]);
|
||||||
if (!this.isMatchingPair(`${path}.chain.crt`, `${path}.key.pem`)) {
|
if (!this.isMatchingPair(`${path}.chain.crt`, `${path}.key.pem`)) {
|
||||||
|
|
Loading…
Reference in New Issue