mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
* Adding check-legacy-links-format workflow * Adding test-link-rewrites workflow * Migrating links to new format * Updating docs-content-check-legacy-links-format hash * chore: update source * Update generated partials from Packer plugin SDK * Bump packer-plugin-sdk to get latest packer-sdc * Update website/content/docs/templates/hcl_templates/blocks/build/provisioner.mdx * Update Plugin SDK to fix shell-local regression --------- Co-authored-by: Kendall Strautman <kendallstrautman@gmail.com> Co-authored-by: Wilken Rivera <wilken@hashicorp.com> Co-authored-by: Kendall Strautman <36613477+kendallstrautman@users.noreply.github.com>
24 lines
689 B
Text
24 lines
689 B
Text
---
|
|
description: |
|
|
The "plugins remove" command can remove a plugin at a version constraint.
|
|
page_title: plugins Command
|
|
---
|
|
|
|
# `plugins remove`
|
|
|
|
The `plugins remove` subcommand removes a Packer plugin at a version constraint
|
|
|
|
```shell-session
|
|
$ packer plugins remove -h
|
|
Usage: packer plugins remove <plugin> [<version constraint>]
|
|
|
|
This command will remove all Packer plugins matching the version constraint
|
|
for the current OS and architecture.
|
|
When the version is omitted all installed versions will be removed.
|
|
|
|
Ex: packer plugins remove github.com/hashicorp/happycloud v1.2.3
|
|
```
|
|
|
|
## Related
|
|
|
|
- [`packer init`](/packer/docs/commands/init) will install all required plugins.
|