tacitknowledge / aem-cookbook

Chef cookbook for Adobe AEM
79 stars 64 forks source link

Feature: deploy start-up configurations to crx-quickstart/install/*.cfg #38

Closed dherges closed 6 years ago

dherges commented 9 years ago

Allows to create install/*.cfg files that are read for first-time start up. Config is created from chef attributes

Example usage for mongo storage:

    "aem": {
       "install_cfg": [
        {
          "name": "org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreService.cfg",
          "settings": {
            "mongouri": "mongodb://localhost:27017",
            "db": "some-aem-database",
            "cache": "256",
            "changesSize": "256"
          }
        }
      ]
    }

wdyt?