if (start){
if(mgr instanceof RemoteDeploymentManager) {
MBeanServerConnection mbsc = ((RemoteDeploymentManager) mgr).getJMXConnector().getMBeanServerConnection();
try {
FrameworkMBean frameworkMBean = getFrameworkMBean(mbsc);
frameworkMBean.startBundle(bundleId);
consoleReader.printString(DeployUtils.reformat("Started bundle: " + bundleId, 4, 72));
} catch (Exception e) {
throw new DeploymentException("Unable to start bundle.", e);
}