mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 07:21:40 -04:00
* add basic docs for plugins command * refactor docs Co-Authored-By: Wilken Rivera <[email protected]> * add plugins command * add plugins subcommands they do nothing for now * add plugins installed command + tests * add plugins install command * add remove plugin command * better docs for the plugins install command * remove duplicate content * better output for installed plugins * add plugins required command * Update plugins_install.go * add newline after `Usage:` * Update plugins_remove.go * Update plugins_required.go * Update plugins_remove.go * Update plugins_installed.go * Update plugins_install.go * add docs * Update plugins_install.go * fix typos * Update plugins_test.go * fix typos Co-Authored-By: Wilken Rivera <[email protected]> * Update core_wrapper.go Co-Authored-By: Wilken Rivera <[email protected]> * Update website/content/docs/commands/plugins/remove.mdx Co-authored-by: Wilken Rivera <[email protected]> * Update website/content/docs/commands/plugins/required.mdx Co-authored-by: Wilken Rivera <[email protected]> * Update website/content/docs/commands/plugins/required.mdx Co-authored-by: Wilken Rivera <[email protected]> * Update plugins_required.go * Update install.mdx * Update required.mdx * plugins requirement, warn when no plugin was found * Update website/content/docs/commands/plugins/required.mdx Co-authored-by: Wilken Rivera <[email protected]> Co-authored-by: Wilken Rivera <[email protected]> Co-authored-by: Wilken Rivera <[email protected]>
22 lines
516 B
Plaintext
22 lines
516 B
Plaintext
---
|
|
description: |
|
|
The "plugins installed" command will list installed plugins.
|
|
page_title: plugins Command
|
|
---
|
|
|
|
# `plugins installed`
|
|
|
|
The `plugins installed` subcommand lists installed Packer plugins
|
|
|
|
```shell-session
|
|
$ packer plugins installed -h
|
|
Usage: packer plugins installed
|
|
|
|
This command lists all installed plugin binaries that match with the current
|
|
OS and architecture. Packer's API version will be ignored.
|
|
```
|
|
|
|
## Related
|
|
|
|
- [`packer init`](/docs/commands/init) will install all required plugins.
|