# directory and started by default
felix.auto.deploy.dir = bundle
felix.auto.deploy.action = install,start
+
+# the location where felix will install all bundles
+# if not set, felix uses felix-cache below its working directory
+org.osgi.framework.storage = /var/run/workflows
+felix.cache.rootdir = /
@@ -33,6 +33,7 @@ public class Main
m_fwk = getFrameworkFactory().newFramework(null);
m_fwk.init();
AutoProcessor.process(props, m_fwk.getBundleContext());
+ System.out.println("cache in: " + props.getProperty("org.osgi.framework.storage"));
System.out.println("bundles should be installed");
m_fwk.start();
m_fwk.waitForStop(0);