├── .gitignore ├── .kitchen.cloud.yml ├── .kitchen.yml ├── .rubocop.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── README.md ├── Rakefile ├── TESTING.md ├── Thorfile ├── VERSION ├── Vagrantfile ├── attributes └── default.rb ├── chefignore ├── libraries └── aem_helpers.rb ├── metadata.rb ├── providers ├── dispatcher.rb ├── farm.rb ├── group.rb ├── init.rb ├── jar_installer.rb ├── jcr_node.rb ├── ldap.rb ├── package.rb ├── port_watcher.rb ├── replicator.rb ├── url_watcher.rb ├── user.rb └── website.rb ├── recipes ├── _base_aem_setup.rb ├── author.rb ├── dispatcher.rb └── publish.rb ├── resources ├── dispatcher.rb ├── farm.rb ├── group.rb ├── init.rb ├── jar_installer.rb ├── jcr_node.rb ├── ldap.rb ├── package.rb ├── port_watcher.rb ├── replicator.rb ├── url_watcher.rb ├── user.rb └── website.rb ├── templates └── default │ ├── aem_dispatcher.conf.erb │ ├── aem_pkg_version.erb │ ├── dispatcher.any.erb │ ├── farm.any.erb │ ├── init.erb │ ├── iptables.erb │ ├── ldap_login.conf.erb │ ├── license.properties.erb │ ├── mods │ └── dispatcher.conf.erb │ └── web.xml.erb └── test └── integration ├── author-5.5.0-oraclejdk6 └── serverspec │ └── cq_author_daemon_spec.rb ├── author-5.6.0-oraclejdk6 └── serverspec │ └── cq_author_daemon_spec.rb ├── author-5.6.1-oraclejdk7 └── serverspec │ └── cq_author_daemon_spec.rb ├── author-6.0.0-oraclejdk7 └── serverspec │ └── cq_author_daemon_spec.rb ├── author-publish-5.5.0-oraclejdk6 └── serverspec │ ├── cq_author_daemon_spec.rb │ └── cq_publish_daemon_spec.rb ├── author-publish-5.6.0-oraclejdk6 └── serverspec │ ├── cq_author_daemon_spec.rb │ └── cq_publish_daemon_spec.rb ├── author-publish-5.6.1-oraclejdk7 └── serverspec │ ├── cq_author_daemon_spec.rb │ └── cq_publish_daemon_spec.rb ├── author-publish-6.0.0-oraclejdk7 └── serverspec │ ├── cq_author_daemon_spec.rb │ └── cq_publish_daemon_spec.rb ├── publish-5.5.0-oraclejdk6 └── serverspec │ └── cq_publish_daemon_spec.rb ├── publish-5.6.0-oraclejdk6 └── serverspec │ └── cq_publish_daemon_spec.rb ├── publish-5.6.1-oraclejdk7 └── serverspec │ └── cq_publish_daemon_spec.rb └── publish-6.0.0-oraclejdk7 └── serverspec └── cq_publish_daemon_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/.kitchen.cloud.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/TESTING.md -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/Thorfile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.4.0 2 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/Vagrantfile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/chefignore -------------------------------------------------------------------------------- /libraries/aem_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/libraries/aem_helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/metadata.rb -------------------------------------------------------------------------------- /providers/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/dispatcher.rb -------------------------------------------------------------------------------- /providers/farm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/farm.rb -------------------------------------------------------------------------------- /providers/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/group.rb -------------------------------------------------------------------------------- /providers/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/init.rb -------------------------------------------------------------------------------- /providers/jar_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/jar_installer.rb -------------------------------------------------------------------------------- /providers/jcr_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/jcr_node.rb -------------------------------------------------------------------------------- /providers/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/ldap.rb -------------------------------------------------------------------------------- /providers/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/package.rb -------------------------------------------------------------------------------- /providers/port_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/port_watcher.rb -------------------------------------------------------------------------------- /providers/replicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/replicator.rb -------------------------------------------------------------------------------- /providers/url_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/url_watcher.rb -------------------------------------------------------------------------------- /providers/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/user.rb -------------------------------------------------------------------------------- /providers/website.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/providers/website.rb -------------------------------------------------------------------------------- /recipes/_base_aem_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/recipes/_base_aem_setup.rb -------------------------------------------------------------------------------- /recipes/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/recipes/author.rb -------------------------------------------------------------------------------- /recipes/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/recipes/dispatcher.rb -------------------------------------------------------------------------------- /recipes/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/recipes/publish.rb -------------------------------------------------------------------------------- /resources/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/dispatcher.rb -------------------------------------------------------------------------------- /resources/farm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/farm.rb -------------------------------------------------------------------------------- /resources/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/group.rb -------------------------------------------------------------------------------- /resources/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/init.rb -------------------------------------------------------------------------------- /resources/jar_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/jar_installer.rb -------------------------------------------------------------------------------- /resources/jcr_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/jcr_node.rb -------------------------------------------------------------------------------- /resources/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/ldap.rb -------------------------------------------------------------------------------- /resources/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/package.rb -------------------------------------------------------------------------------- /resources/port_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/port_watcher.rb -------------------------------------------------------------------------------- /resources/replicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/replicator.rb -------------------------------------------------------------------------------- /resources/url_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/url_watcher.rb -------------------------------------------------------------------------------- /resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/user.rb -------------------------------------------------------------------------------- /resources/website.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/resources/website.rb -------------------------------------------------------------------------------- /templates/default/aem_dispatcher.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/aem_dispatcher.conf.erb -------------------------------------------------------------------------------- /templates/default/aem_pkg_version.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/aem_pkg_version.erb -------------------------------------------------------------------------------- /templates/default/dispatcher.any.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/dispatcher.any.erb -------------------------------------------------------------------------------- /templates/default/farm.any.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/farm.any.erb -------------------------------------------------------------------------------- /templates/default/init.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/init.erb -------------------------------------------------------------------------------- /templates/default/iptables.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/iptables.erb -------------------------------------------------------------------------------- /templates/default/ldap_login.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/ldap_login.conf.erb -------------------------------------------------------------------------------- /templates/default/license.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/license.properties.erb -------------------------------------------------------------------------------- /templates/default/mods/dispatcher.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/mods/dispatcher.conf.erb -------------------------------------------------------------------------------- /templates/default/web.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/templates/default/web.xml.erb -------------------------------------------------------------------------------- /test/integration/author-5.5.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-5.5.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-5.6.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-5.6.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-5.6.1-oraclejdk7/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-5.6.1-oraclejdk7/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-6.0.0-oraclejdk7/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-6.0.0-oraclejdk7/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.5.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.5.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.5.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.5.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.6.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.6.0-oraclejdk6/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.6.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.6.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.6.1-oraclejdk7/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.6.1-oraclejdk7/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-5.6.1-oraclejdk7/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-5.6.1-oraclejdk7/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-6.0.0-oraclejdk7/serverspec/cq_author_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-6.0.0-oraclejdk7/serverspec/cq_author_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/author-publish-6.0.0-oraclejdk7/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/author-publish-6.0.0-oraclejdk7/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/publish-5.5.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/publish-5.5.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/publish-5.6.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/publish-5.6.0-oraclejdk6/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/publish-5.6.1-oraclejdk7/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/publish-5.6.1-oraclejdk7/serverspec/cq_publish_daemon_spec.rb -------------------------------------------------------------------------------- /test/integration/publish-6.0.0-oraclejdk7/serverspec/cq_publish_daemon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacitknowledge/aem-cookbook/HEAD/test/integration/publish-6.0.0-oraclejdk7/serverspec/cq_publish_daemon_spec.rb --------------------------------------------------------------------------------