replace active by enabled for consistency in plugins

Signed-off-by: Victor Vieux <vieux@docker.com>
Upstream-commit: cf4e268115911e9e4a4da94dc00b2dc370f86a47
Component: engine
This commit is contained in:
Victor Vieux
2016-08-04 16:19:46 -07:00
parent 96297e96b5
commit e44f33953e
12 changed files with 31 additions and 38 deletions

View File

@ -25,12 +25,12 @@ see [`docker plugin install`](plugin_install.md).
The following example shows that the `no-remove` plugin is installed,
but disabled ("inactive"):
but disabled:
```bash
$ docker plugin ls
NAME TAG DESCRIPTION ACTIVE
NAME TAG DESCRIPTION ENABLED
tiborvass/no-remove latest A test plugin for Docker false
```
@ -40,14 +40,10 @@ To enable the plugin, use the following command:
$ docker plugin enable tiborvass/no-remove
tiborvass/no-remove
```
After the plugin is enabled, it appears as "active" in the list of plugins:
```bash
$ docker plugin ls
NAME TAG DESCRIPTION ACTIVE
NAME TAG DESCRIPTION ENABLED
tiborvass/no-remove latest A test plugin for Docker true
```