2024-08-13 20:30:42 +08:00
|
|
|
|
import { AbstractTaskPlugin, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput, TaskOutput } from '@certd/pipeline';
|
2024-07-15 00:30:33 +08:00
|
|
|
|
import { SshClient } from '../../lib/ssh.js';
|
2024-09-05 15:36:35 +08:00
|
|
|
|
import { CertInfo, CertReader, CertReaderHandleContext } from '@certd/plugin-cert';
|
2024-05-27 18:38:41 +08:00
|
|
|
|
import * as fs from 'fs';
|
2024-07-15 00:30:33 +08:00
|
|
|
|
import { SshAccess } from '../../access/index.js';
|
2024-10-10 16:18:37 +08:00
|
|
|
|
import dayjs from 'dayjs';
|
2022-11-07 23:31:20 +08:00
|
|
|
|
|
2023-01-11 20:39:48 +08:00
|
|
|
|
@IsTaskPlugin({
|
2024-05-27 18:38:41 +08:00
|
|
|
|
name: 'uploadCertToHost',
|
2024-10-27 11:03:09 +08:00
|
|
|
|
title: '部署证书到主机',
|
2024-09-20 11:11:25 +08:00
|
|
|
|
icon: 'line-md:uploading-loop',
|
2024-07-21 02:26:03 +08:00
|
|
|
|
group: pluginGroups.host.key,
|
2024-10-27 11:03:09 +08:00
|
|
|
|
desc: '上传证书到主机,然后执行部署脚本命令',
|
2023-01-11 20:39:48 +08:00
|
|
|
|
default: {
|
|
|
|
|
|
strategy: {
|
|
|
|
|
|
runStrategy: RunStrategy.SkipWhenSucceed,
|
2022-11-07 23:31:20 +08:00
|
|
|
|
},
|
2023-01-11 20:39:48 +08:00
|
|
|
|
},
|
|
|
|
|
|
})
|
2023-05-24 15:41:35 +08:00
|
|
|
|
export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
2024-11-13 22:06:56 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: '域名证书',
|
|
|
|
|
|
helper: '请选择前置任务输出的域名证书',
|
|
|
|
|
|
component: {
|
|
|
|
|
|
name: 'output-selector',
|
|
|
|
|
|
from: ['CertApply', 'CertApplyLego'],
|
|
|
|
|
|
},
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
})
|
|
|
|
|
|
cert!: CertInfo;
|
|
|
|
|
|
|
|
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: '证书格式',
|
2024-11-13 22:10:13 +08:00
|
|
|
|
helper: '要部署的证书格式,支持pem、pfx、der、jks',
|
2024-11-13 22:06:56 +08:00
|
|
|
|
component: {
|
|
|
|
|
|
name: 'a-select',
|
|
|
|
|
|
options: [
|
|
|
|
|
|
{ value: 'pem', label: 'pem,Nginx等大部分应用' },
|
|
|
|
|
|
{ value: 'pfx', label: 'pfx,一般用于IIS' },
|
|
|
|
|
|
{ value: 'der', label: 'der,一般用于Apache' },
|
|
|
|
|
|
{ value: 'jks', label: 'jks,一般用于JAVA应用' },
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
})
|
|
|
|
|
|
certType!: string;
|
|
|
|
|
|
|
2023-01-11 20:39:48 +08:00
|
|
|
|
@TaskInput({
|
2024-09-27 14:46:38 +08:00
|
|
|
|
title: '证书保存路径',
|
2024-11-13 22:06:56 +08:00
|
|
|
|
helper: '填写应用原本的证书保存路径,路径要包含证书文件名,例如:/tmp/cert.pem',
|
2024-05-27 18:38:41 +08:00
|
|
|
|
component: {
|
2024-09-27 14:46:38 +08:00
|
|
|
|
placeholder: '/root/deploy/nginx/full_chain.pem',
|
2024-05-27 18:38:41 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'pem';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
|
|
|
|
|
required: true,
|
2024-10-25 22:49:05 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
2023-01-11 20:39:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
crtPath!: string;
|
|
|
|
|
|
@TaskInput({
|
2024-05-27 18:38:41 +08:00
|
|
|
|
title: '私钥保存路径',
|
2024-10-25 22:49:05 +08:00
|
|
|
|
helper: '需要有写入权限,路径要包含私钥文件名,例如:/tmp/cert.key',
|
2024-05-27 18:38:41 +08:00
|
|
|
|
component: {
|
2024-06-19 00:21:13 +08:00
|
|
|
|
placeholder: '/root/deploy/nginx/cert.key',
|
2024-05-27 18:38:41 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'pem';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
|
|
|
|
|
required: true,
|
2024-10-25 22:49:05 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
2023-01-11 20:39:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
keyPath!: string;
|
2024-09-06 00:13:21 +08:00
|
|
|
|
|
2024-09-22 23:19:10 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: '中间证书保存路径',
|
2024-10-25 22:49:05 +08:00
|
|
|
|
helper: '路径要包含文件名,一般情况传上面两个文件即可,极少数情况需要这个中间证书',
|
2024-09-22 23:19:10 +08:00
|
|
|
|
component: {
|
2024-09-27 14:46:38 +08:00
|
|
|
|
placeholder: '/root/deploy/nginx/intermediate.pem',
|
2024-09-22 23:19:10 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'pem';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
2024-10-25 22:49:05 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
2024-09-22 23:19:10 +08:00
|
|
|
|
})
|
|
|
|
|
|
icPath!: string;
|
|
|
|
|
|
|
2024-09-06 00:13:21 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: 'PFX证书保存路径',
|
2024-11-13 22:06:56 +08:00
|
|
|
|
helper: '填写应用原本的证书保存路径,路径要包含证书文件名,例如:D:\\iis\\cert.pfx',
|
2024-09-06 00:13:21 +08:00
|
|
|
|
component: {
|
2024-11-13 22:06:56 +08:00
|
|
|
|
placeholder: 'D:\\iis\\cert.pfx',
|
2024-09-06 00:13:21 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'pfx';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
|
|
|
|
|
required: true,
|
2024-10-25 22:49:05 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
2024-09-06 00:13:21 +08:00
|
|
|
|
})
|
|
|
|
|
|
pfxPath!: string;
|
|
|
|
|
|
|
|
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: 'DER证书保存路径',
|
2024-11-13 22:06:56 +08:00
|
|
|
|
helper: '填写应用原本的证书保存路径,路径要包含证书文件名,例如:/tmp/cert.der',
|
2024-09-06 00:13:21 +08:00
|
|
|
|
component: {
|
2024-11-13 22:06:56 +08:00
|
|
|
|
placeholder: '/root/deploy/apache/cert.der',
|
2024-09-06 00:13:21 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'der';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
|
|
|
|
|
required: true,
|
2024-10-25 22:49:05 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
2024-09-06 00:13:21 +08:00
|
|
|
|
})
|
|
|
|
|
|
derPath!: string;
|
|
|
|
|
|
|
2024-11-13 11:39:40 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: 'jks证书保存路径',
|
2024-11-13 22:06:56 +08:00
|
|
|
|
helper: '填写应用原本的证书保存路径,路径要包含证书文件名,例如:/tmp/cert.jks',
|
2024-11-13 11:39:40 +08:00
|
|
|
|
component: {
|
2024-11-13 22:06:56 +08:00
|
|
|
|
placeholder: '/root/deploy/java_app/cert.jks',
|
2024-11-13 11:39:40 +08:00
|
|
|
|
},
|
2024-11-13 22:06:56 +08:00
|
|
|
|
mergeScript: `
|
|
|
|
|
|
return {
|
|
|
|
|
|
show: ctx.compute(({form})=>{
|
|
|
|
|
|
return form.certType === 'jks';
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
`,
|
|
|
|
|
|
required: true,
|
2024-11-13 11:39:40 +08:00
|
|
|
|
rules: [{ type: 'filepath' }],
|
|
|
|
|
|
})
|
2024-10-30 01:44:02 +08:00
|
|
|
|
jksPath!: string;
|
2024-10-29 23:37:18 +08:00
|
|
|
|
|
2023-01-11 20:39:48 +08:00
|
|
|
|
@TaskInput({
|
2024-05-27 18:38:41 +08:00
|
|
|
|
title: '主机登录配置',
|
|
|
|
|
|
helper: 'access授权',
|
2023-01-11 20:39:48 +08:00
|
|
|
|
component: {
|
2024-10-07 03:21:16 +08:00
|
|
|
|
name: 'access-selector',
|
2024-05-27 18:38:41 +08:00
|
|
|
|
type: 'ssh',
|
2022-11-07 23:31:20 +08:00
|
|
|
|
},
|
2024-09-26 10:24:25 +08:00
|
|
|
|
required: true,
|
2023-01-11 20:39:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
accessId!: string;
|
|
|
|
|
|
|
2024-07-08 11:19:02 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: '自动创建远程目录',
|
|
|
|
|
|
helper: '是否自动创建远程目录,如果关闭则你需要自己确保远程目录存在',
|
2024-08-06 11:23:23 +08:00
|
|
|
|
value: true,
|
2024-07-08 11:19:02 +08:00
|
|
|
|
component: {
|
|
|
|
|
|
name: 'a-switch',
|
|
|
|
|
|
vModel: 'checked',
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
mkdirs = true;
|
|
|
|
|
|
|
2024-09-22 23:19:10 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: 'shell脚本命令',
|
|
|
|
|
|
component: {
|
|
|
|
|
|
name: 'a-textarea',
|
|
|
|
|
|
vModel: 'value',
|
|
|
|
|
|
rows: 6,
|
|
|
|
|
|
},
|
|
|
|
|
|
helper: '上传后执行脚本命令,不填则不执行\n注意:如果目标主机是windows,且终端是cmd,系统会自动将多行命令通过“&&”连接成一行',
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
})
|
|
|
|
|
|
script!: string;
|
|
|
|
|
|
|
2024-10-10 16:18:37 +08:00
|
|
|
|
@TaskInput({
|
|
|
|
|
|
title: '注入环境变量',
|
|
|
|
|
|
value: false,
|
|
|
|
|
|
component: {
|
|
|
|
|
|
name: 'a-switch',
|
|
|
|
|
|
vModel: 'checked',
|
|
|
|
|
|
},
|
|
|
|
|
|
helper: '是否将证书域名、路径等信息注入脚本执行环境变量中,具体的变量名称,可以运行后从日志中查看',
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
})
|
|
|
|
|
|
injectEnv!: string;
|
|
|
|
|
|
|
2023-01-11 20:39:48 +08:00
|
|
|
|
@TaskOutput({
|
2024-05-27 18:38:41 +08:00
|
|
|
|
title: '证书保存路径',
|
2023-01-11 20:39:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
hostCrtPath!: string;
|
|
|
|
|
|
|
|
|
|
|
|
@TaskOutput({
|
2024-05-27 18:38:41 +08:00
|
|
|
|
title: '私钥保存路径',
|
2023-01-11 20:39:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
hostKeyPath!: string;
|
|
|
|
|
|
|
2024-09-22 23:19:10 +08:00
|
|
|
|
@TaskOutput({
|
|
|
|
|
|
title: '中间证书保存路径',
|
|
|
|
|
|
})
|
|
|
|
|
|
hostIcPath!: string;
|
2024-09-06 00:13:21 +08:00
|
|
|
|
@TaskOutput({
|
|
|
|
|
|
title: 'PFX保存路径',
|
|
|
|
|
|
})
|
|
|
|
|
|
hostPfxPath!: string;
|
|
|
|
|
|
|
|
|
|
|
|
@TaskOutput({
|
|
|
|
|
|
title: 'DER保存路径',
|
|
|
|
|
|
})
|
|
|
|
|
|
hostDerPath!: string;
|
2024-10-29 23:37:18 +08:00
|
|
|
|
@TaskOutput({
|
2024-10-30 01:44:02 +08:00
|
|
|
|
title: 'jks保存路径',
|
2024-10-29 23:37:18 +08:00
|
|
|
|
})
|
2024-10-30 01:44:02 +08:00
|
|
|
|
hostJksPath!: string;
|
2024-09-06 00:13:21 +08:00
|
|
|
|
|
2024-08-13 20:30:42 +08:00
|
|
|
|
async onInstance() {}
|
2024-05-30 10:54:18 +08:00
|
|
|
|
|
|
|
|
|
|
copyFile(srcFile: string, destFile: string) {
|
2024-09-06 00:13:21 +08:00
|
|
|
|
if (!srcFile || !destFile) {
|
|
|
|
|
|
this.logger.warn(`srcFile:${srcFile} 或 destFile:${destFile} 为空,不复制`);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2024-05-30 10:54:18 +08:00
|
|
|
|
const dir = destFile.substring(0, destFile.lastIndexOf('/'));
|
|
|
|
|
|
if (!fs.existsSync(dir)) {
|
|
|
|
|
|
fs.mkdirSync(dir, { recursive: true });
|
|
|
|
|
|
}
|
|
|
|
|
|
fs.copyFileSync(srcFile, destFile);
|
2024-09-22 23:19:10 +08:00
|
|
|
|
this.logger.info(`复制文件:${srcFile} => ${destFile}`);
|
2024-05-30 10:54:18 +08:00
|
|
|
|
}
|
2023-01-11 20:39:48 +08:00
|
|
|
|
async execute(): Promise<void> {
|
2024-04-08 10:05:11 +08:00
|
|
|
|
const { crtPath, keyPath, cert, accessId } = this;
|
2023-05-23 18:01:20 +08:00
|
|
|
|
const certReader = new CertReader(cert);
|
2024-09-05 15:36:35 +08:00
|
|
|
|
|
|
|
|
|
|
const handle = async (opts: CertReaderHandleContext) => {
|
2024-10-30 01:44:02 +08:00
|
|
|
|
const { tmpCrtPath, tmpKeyPath, tmpDerPath, tmpJksPath, tmpPfxPath, tmpIcPath } = opts;
|
2024-09-26 15:15:17 +08:00
|
|
|
|
// if (this.copyToThisHost) {
|
|
|
|
|
|
// this.logger.info('复制到目标路径');
|
|
|
|
|
|
// this.copyFile(tmpCrtPath, crtPath);
|
|
|
|
|
|
// this.copyFile(tmpKeyPath, keyPath);
|
|
|
|
|
|
// this.copyFile(tmpIcPath, this.icPath);
|
|
|
|
|
|
// this.copyFile(tmpPfxPath, this.pfxPath);
|
|
|
|
|
|
// this.copyFile(tmpDerPath, this.derPath);
|
|
|
|
|
|
// this.logger.warn('复制到当前主机功能已迁移到 “复制到本机”插件,请尽快换成复制到本机插件');
|
|
|
|
|
|
// return;
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
if (accessId == null) {
|
|
|
|
|
|
this.logger.error('复制到当前主机功能已迁移到 “复制到本机”插件,请换成复制到本机插件');
|
2024-09-26 13:20:10 +08:00
|
|
|
|
return;
|
2024-09-26 10:24:25 +08:00
|
|
|
|
}
|
2024-09-26 13:20:10 +08:00
|
|
|
|
const connectConf: SshAccess = await this.accessService.getById(accessId);
|
|
|
|
|
|
const sshClient = new SshClient(this.logger);
|
|
|
|
|
|
|
2024-09-26 10:24:25 +08:00
|
|
|
|
if (!accessId) {
|
|
|
|
|
|
throw new Error('主机登录授权配置不能为空');
|
|
|
|
|
|
}
|
|
|
|
|
|
this.logger.info('准备上传文件到服务器');
|
|
|
|
|
|
|
|
|
|
|
|
const transports: any = [];
|
|
|
|
|
|
if (crtPath) {
|
|
|
|
|
|
transports.push({
|
|
|
|
|
|
localPath: tmpCrtPath,
|
|
|
|
|
|
remotePath: crtPath,
|
2024-07-08 11:10:08 +08:00
|
|
|
|
});
|
2024-09-26 10:24:25 +08:00
|
|
|
|
this.logger.info(`上传证书到主机:${crtPath}`);
|
2024-05-30 10:54:18 +08:00
|
|
|
|
}
|
2024-09-26 10:24:25 +08:00
|
|
|
|
if (keyPath) {
|
|
|
|
|
|
transports.push({
|
|
|
|
|
|
localPath: tmpKeyPath,
|
|
|
|
|
|
remotePath: keyPath,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.logger.info(`上传私钥到主机:${keyPath}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.icPath) {
|
|
|
|
|
|
transports.push({
|
|
|
|
|
|
localPath: tmpIcPath,
|
|
|
|
|
|
remotePath: this.icPath,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.logger.info(`上传中间证书到主机:${this.icPath}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.pfxPath) {
|
|
|
|
|
|
transports.push({
|
|
|
|
|
|
localPath: tmpPfxPath,
|
|
|
|
|
|
remotePath: this.pfxPath,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.logger.info(`上传PFX证书到主机:${this.pfxPath}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.derPath) {
|
|
|
|
|
|
transports.push({
|
|
|
|
|
|
localPath: tmpDerPath,
|
|
|
|
|
|
remotePath: this.derPath,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.logger.info(`上传DER证书到主机:${this.derPath}`);
|
|
|
|
|
|
}
|
2024-10-30 01:44:02 +08:00
|
|
|
|
if (this.jksPath) {
|
2024-10-29 23:37:18 +08:00
|
|
|
|
transports.push({
|
2024-10-30 01:44:02 +08:00
|
|
|
|
localPath: tmpJksPath,
|
|
|
|
|
|
remotePath: this.jksPath,
|
2024-10-29 23:37:18 +08:00
|
|
|
|
});
|
2024-10-30 01:44:02 +08:00
|
|
|
|
this.logger.info(`上传jks证书到主机:${this.jksPath}`);
|
2024-10-29 23:37:18 +08:00
|
|
|
|
}
|
2024-09-26 10:24:25 +08:00
|
|
|
|
this.logger.info('开始上传文件到服务器');
|
|
|
|
|
|
await sshClient.uploadFiles({
|
|
|
|
|
|
connectConf,
|
|
|
|
|
|
transports,
|
|
|
|
|
|
mkdirs: this.mkdirs,
|
|
|
|
|
|
});
|
|
|
|
|
|
this.logger.info('上传文件到服务器成功');
|
|
|
|
|
|
//输出
|
|
|
|
|
|
this.hostCrtPath = crtPath;
|
|
|
|
|
|
this.hostKeyPath = keyPath;
|
|
|
|
|
|
this.hostIcPath = this.icPath;
|
|
|
|
|
|
this.hostPfxPath = this.pfxPath;
|
|
|
|
|
|
this.hostDerPath = this.derPath;
|
2024-10-30 01:44:02 +08:00
|
|
|
|
this.hostJksPath = this.jksPath;
|
2024-09-05 15:36:35 +08:00
|
|
|
|
};
|
2024-09-26 10:24:25 +08:00
|
|
|
|
|
2024-09-05 15:36:35 +08:00
|
|
|
|
await certReader.readCertFile({
|
|
|
|
|
|
logger: this.logger,
|
|
|
|
|
|
handle,
|
|
|
|
|
|
});
|
2024-09-22 23:19:10 +08:00
|
|
|
|
|
2024-09-25 03:22:14 +08:00
|
|
|
|
if (this.script && this.script?.trim()) {
|
2024-09-26 13:20:10 +08:00
|
|
|
|
const connectConf: SshAccess = await this.accessService.getById(accessId);
|
|
|
|
|
|
const sshClient = new SshClient(this.logger);
|
2024-09-22 23:19:10 +08:00
|
|
|
|
this.logger.info('执行脚本命令');
|
2024-10-10 16:18:37 +08:00
|
|
|
|
|
|
|
|
|
|
//环境变量
|
|
|
|
|
|
const env = {};
|
|
|
|
|
|
if (this.injectEnv) {
|
|
|
|
|
|
const domains = certReader.getAllDomains();
|
|
|
|
|
|
for (let i = 0; i < domains.length; i++) {
|
|
|
|
|
|
env[`CERT_DOMAIN_${i}`] = domains[i];
|
|
|
|
|
|
}
|
|
|
|
|
|
env['CERT_EXPIRES'] = dayjs(certReader.getCrtDetail().expires).unix();
|
|
|
|
|
|
|
|
|
|
|
|
env['HOST_CRT_PATH'] = this.hostCrtPath || '';
|
|
|
|
|
|
env['HOST_KEY_PATH'] = this.hostKeyPath || '';
|
|
|
|
|
|
env['HOST_IC_PATH'] = this.hostIcPath || '';
|
|
|
|
|
|
env['HOST_PFX_PATH'] = this.hostPfxPath || '';
|
|
|
|
|
|
env['HOST_DER_PATH'] = this.hostDerPath || '';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-09-22 23:19:10 +08:00
|
|
|
|
const scripts = this.script.split('\n');
|
|
|
|
|
|
await sshClient.exec({
|
|
|
|
|
|
connectConf,
|
|
|
|
|
|
script: scripts,
|
2024-10-10 16:18:37 +08:00
|
|
|
|
env,
|
2024-09-22 23:19:10 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
2022-11-07 23:31:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-05-09 09:56:31 +08:00
|
|
|
|
|
|
|
|
|
|
new UploadCertToHostPlugin();
|