Details
Description
Karaf client should allow to send command arguments, for instance
servicemix/bin/client -u smx -p smx start --force 1
The "--force" argument is interpreted locally by Karaf client and blocked because it is unknown to it :
Unknown option: --force Run with --help for usage
Here is a patch to Karaf client which adds support for the "end of options marker" double-dash (as in the "getopt" component). It becomes now possible to run the following command :
servicemix/bin/client -u smx -p smx -- start --force 1