Add clear certificates pangctl command

This commit is contained in:
Owen
2026-05-06 14:08:28 -07:00
parent e86a381ed5
commit a8c50b8618
2 changed files with 30 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import { rotateServerSecret } from "./commands/rotateServerSecret";
import { clearLicenseKeys } from "./commands/clearLicenseKeys";
import { deleteClient } from "./commands/deleteClient";
import { generateOrgCaKeys } from "./commands/generateOrgCaKeys";
import { clearCertificates } from "./commands/clearCertificates";
yargs(hideBin(process.argv))
.scriptName("pangctl")
@@ -19,5 +20,6 @@ yargs(hideBin(process.argv))
.command(clearLicenseKeys)
.command(deleteClient)
.command(generateOrgCaKeys)
.command(clearCertificates)
.demandCommand()
.help().argv;