From: John Malconian Date: Fri, 17 Mar 2023 18:32:20 +0000 (-0400) Subject: note about downloading solr dists X-Git-Url: http://git.indexdata.com/?p=lui-solr.git;a=commitdiff_plain;h=HEAD;hp=287069f7310a63a28f6fe5ee6cc8e9b9566e23b1 note about downloading solr dists --- diff --git a/dev-deploy.yml b/dev-deploy.yml index 5755962..ed2df3d 100644 --- a/dev-deploy.yml +++ b/dev-deploy.yml @@ -16,9 +16,15 @@ become: yes apt_repository: repo="deb http://ftp.debian.org/debian jessie-backports main" state=present update_cache=yes - - name: Install openjdk + - name: Install openjdk from backports become: yes - apt: name=openjdk-8-jdk state=present + apt: name=openjdk-8-jdk state=present default_release=jessie-backports + + - name: Make Java 8 the system default + become: yes + shell: update-java-alternatives --set java-1.8.0-openjdk-amd64 && touch /etc/.set_javadefault_ansible + args: + creates: /etc/.set_javadefault_ansible - name: Create deployment environment become: yes diff --git a/dist/README.md b/dist/README.md new file mode 100644 index 0000000..40668f0 --- /dev/null +++ b/dist/README.md @@ -0,0 +1,5 @@ +The solr distributions have been removed from this repo. Download the Solr5 or 6 distribution from +the Lucene repository before running the installation scripts. + +wget https://archive.apache.org/dist/lucene/solr/5.5.4/solr-5.5.4.tgz +wget https://archive.apache.org/dist/lucene/solr/6.1.0/solr-6.1.0.tgz diff --git a/dist/solr-5.5.1.tgz b/dist/solr-5.5.1.tgz deleted file mode 100644 index 2b4ccf0..0000000 Binary files a/dist/solr-5.5.1.tgz and /dev/null differ diff --git a/dist/solr-6.1.0.tgz b/dist/solr-6.1.0.tgz deleted file mode 100644 index a2e62ec..0000000 Binary files a/dist/solr-6.1.0.tgz and /dev/null differ