in services/minho-osgi/src/main/java/org/apache/karaf/minho/osgi/OsgiModuleManagerService.java [198:209]
public void stop(String location) throws Exception {
log.info("Stopping OSGi module " + location);
Bundle bundle = framework.getBundleContext().getBundle(location);
if (bundle == null) {
throw new IllegalArgumentException("OSGi module " + location + " not found");
}
try {
bundle.uninstall();
} catch (Exception e) {
throw new IllegalArgumentException("Failed to stop OSGi module " + location, e);
}
}