Is there anyway in Apache Karaf 3.0.x to override the default help message that's displayed when you type --help?
I've browsed the documentation and couldn't find anything. I've looked through the source code and found in DefaultActionPreparator.prepare() it checks for the --help string in the parameters and if it's there it runs a printUsage() function from the ActionMetaData class. The problem is that I don't see any easy way to override that. It looks like in Karaf 4.0.x or maybe 5 things are getting refactored to make it easier to override the help functionality, but I'm currently using 3.0.4 and can't upgrade to an experimental version in my production systems.
So, does anyone know if it's possible to override the help message for a command and if so do you know of some documentation?