Hello,
I tried to use the P2 API to install some IUs but the config.ini gets changed during the provisioning.
// Creating an operation
final InstallOperation installOperation = new InstallOperation(new ProvisioningSession(agent), toInstall);
IStatus resolveModal = installOperation.resolveModal(new NullProgressMonitor());
if (resolveModal.getCode() != IStatus.ERROR) {
IStatus status = installOperation.getProvisioningJob(new NullProgressMonitor()).run(new NullProgressMonitor());
System.out.println("provisionning status is :" + status);
}
I have a configuration file that I do not want to be modified how can I do that.
I need to mention that we have our own launcher (configurator) to install the plugins, I do no mind making some update on that but how to avoid config.ini to be modified ?
Thanks.