From d8c1297306fbba185184a8d42c8f4872beff197d Mon Sep 17 00:00:00 2001 From: Jeff Potts Date: Tue, 1 Sep 2020 16:30:11 -0500 Subject: [PATCH] Add copy config tasks to the end of Alfresco and SOLR installation playbooks to save steps. --- installAlfresco.yml | 6 +++++- installSearch.yml | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/installAlfresco.yml b/installAlfresco.yml index d87a337..b1d957d 100644 --- a/installAlfresco.yml +++ b/installAlfresco.yml @@ -4,7 +4,7 @@ # Requires Alfresco distribution archive, Tomcat archive, and AOS archive to # reside in files/third-party. # -# Custom AMPs should be placed in files/amps and files/amps_share. +# Custom AMPs should be placed in files/third-party/amps and files/third-party/amps_share. # # Install location depends on alf_home, alf_install_dir, and tomcat_dir. # @@ -18,3 +18,7 @@ - include_tasks: tasks/doInstallPDFRenderer.yml - include_tasks: tasks/doCopyAmps.yml - include_tasks: tasks/doApplyAmps.yml + - include_tasks: tasks/doCopyGlobalProperties.yml + - include_tasks: tasks/doCopyTomcatConfig.yml + - include_tasks: tasks/doCopyShareConfig.yml + - include_tasks: tasks/doCopyAlfrescoConfig.yml \ No newline at end of file diff --git a/installSearch.yml b/installSearch.yml index dc87c3f..c7bf09a 100644 --- a/installSearch.yml +++ b/installSearch.yml @@ -11,3 +11,4 @@ remote_user: alfresco tasks: - include_tasks: tasks/doInstallSearch.yml + - include_tasks: tasks/doCopySolrConfig.yml