in src/main/java/org/apache/sling/installer/provider/file/impl/Activator.java [81:88]
public static String getProp(final BundleContext bundleContext, final String key) {
// this already falls back to system properties
String value = bundleContext.getProperty(key);
if (value == null) {
value = System.getProperty(key.toUpperCase().replace('.', '_'));
}
return value;
}