chore: 修改esxi的名字

This commit is contained in:
xiaojunnuo
2026-01-22 12:02:34 +08:00
parent 96c9e74c6f
commit 8c2d868093
4 changed files with 6 additions and 6 deletions
@@ -0,0 +1 @@
export * from "./plugin-deploy-to-esxi.js";
@@ -5,8 +5,8 @@ import { SshAccess } from "../../plugin-lib/ssh/ssh-access.js";
import { SshClient } from "../../plugin-lib/ssh/ssh.js"; import { SshClient } from "../../plugin-lib/ssh/ssh.js";
import { AbstractPlusTaskPlugin } from "@certd/plugin-plus"; import { AbstractPlusTaskPlugin } from "@certd/plugin-plus";
@IsTaskPlugin({ @IsTaskPlugin({
name: "ExsiDeployCert", name: "EsxiDeployCert", //这个名字Esxi不要改,兼容用户旧数据,以前写错了
title: "Exsi-部署证书到Exsi", title: "ESXi-部署证书到ESXi",
icon: "svg:icon-lucky", icon: "svg:icon-lucky",
group: pluginGroups.host.key, group: pluginGroups.host.key,
default: { default: {
@@ -16,7 +16,7 @@ import { AbstractPlusTaskPlugin } from "@certd/plugin-plus";
}, },
needPlus: true, needPlus: true,
}) })
export class ExsiDeployCertPlugin extends AbstractPlusTaskPlugin { export class EsxiDeployCertPlugin extends AbstractPlusTaskPlugin {
//证书选择,此项必须要有 //证书选择,此项必须要有
@TaskInput({ @TaskInput({
title: "域名证书", title: "域名证书",
@@ -88,4 +88,4 @@ export class ExsiDeployCertPlugin extends AbstractPlusTaskPlugin {
} }
} }
new ExsiDeployCertPlugin(); new EsxiDeployCertPlugin();
@@ -1 +0,0 @@
export * from "./plugin-deploy-to-exsi.js";
@@ -18,5 +18,5 @@ export * from "./lucky/index.js";
export * from "./kuocai/index.js"; export * from "./kuocai/index.js";
export * from "./unicloud/index.js"; export * from "./unicloud/index.js";
export * from "./maoyun/index.js"; export * from "./maoyun/index.js";
export * from "./exsi/index.js"; export * from "./esxi/index.js";
export * from "./openwrt/index.js"; export * from "./openwrt/index.js";