/** * **certbot** - Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol. * * @domain `certbot.eff.org` * @programs `certbot` * @version `5.2.1` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install certbot.eff.org` * @homepage https://certbot.eff.org/ * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.certbotefforg * console.log(pkg.name) // "certbot" * console.log(pkg.description) // "Certbot is EFF's tool to obtain certs from Let'..." * console.log(pkg.programs) // ["certbot"] * console.log(pkg.versions[0]) // "5.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/certbot-eff-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const certbotefforgPackage: { /** * The display name of this package. */ name: 'certbot'; /** * The canonical domain name for this package. */ domain: 'certbot.eff.org'; /** * Brief description of what this package does. */ description: 'Certbot is EFF\'s tool to obtain certs from Let\'s Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/certbot.eff.org/package.yml'; homepageUrl: 'https://certbot.eff.org/'; githubUrl: 'https://github.com/certbot/certbot'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install certbot.eff.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +certbot.eff.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install certbot.eff.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['certbot']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.11']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.2.1', '5.1.0', '5.0.0', '4.2.0', '4.1.1', '4.1.0', '4.0.0', '3.3.0', '3.2.0', '3.1.0', '3.0.1', '3.0.0', '2.11.1', '2.11.0', '2.10.0', '2.9.0', '2.8.0', '2.7.4', '2.7.3', '2.7.2', '2.7.1', '2.7.0', '2.6.0']; aliases: readonly [] }; export type CertbotefforgPackage = typeof certbotefforgPackage