Skip to content

Commit

Permalink
Merge pull request #43 from mbloch1986/fix-42/davex_configuration_fail
Browse files Browse the repository at this point in the history
Add checks after starting bundle Davex when enabling CRXDE #42
  • Loading branch information
cliffano committed Sep 30, 2018
2 parents 8125957 + 51954a2 commit b83d09f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions manifests/enable_crxde.pp
Original file line number Diff line number Diff line change
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 b83d09f

Please sign in to comment.