Skip to content

Commit

Permalink
Add checks after starting bundle Davex when enabling CRXDE shinesolut…
Browse files Browse the repository at this point in the history
…ions#42

* Add Check login_page_is_ready and aem_health_check_is_ok after starting bundle Davex when enabling crxde shinesolutions#42
  • Loading branch information
mbloch1986 committed Sep 27, 2018
1 parent 1c280f8 commit 51954a2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions manifests/enable_crxde.pp
Expand Up @@ -11,9 +11,14 @@
aem_username => $aem_username,
aem_password => $aem_password,
aem_id => $aem_id,
}

aem_node { "[${aem_id}] Create Apache Sling DavEx Servlet config node":
} -> aem_aem { "[${aem_id}]: Wait until login page is ready after starting davex bundle":
ensure => login_page_is_ready,
aem_id => $aem_id,
} -> aem_aem { "${aem_id}: Wait until aem health check is ok after starting davex bundle":
ensure => aem_health_check_is_ok,
tags => 'deep',
aem_id => $aem_id,
} -> aem_node { "[${aem_id}] Create Apache Sling DavEx Servlet config node":
ensure => present,
name => 'org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet',
path => '/apps/system/config',
Expand Down

0 comments on commit 51954a2

Please sign in to comment.