node rm can be applied on not only active node

Signed-off-by: allencloud <allen.sun@daocloud.io>
Upstream-commit: 503053819e
Component: cli
This commit is contained in:
allencloud
2016-11-02 17:22:04 +08:00
parent 7caa97e5c7
commit 5da8376ad1
+1 -1
View File
@@ -29,7 +29,7 @@ func newRemoveCommand(dockerCli *command.DockerCli) *cobra.Command {
},
}
flags := cmd.Flags()
flags.BoolVar(&opts.force, "force", false, "Force remove an active node")
flags.BoolVar(&opts.force, "force", false, "Force remove a node from the swarm")
return cmd
}