note about downloading solr dists master
authorJohn Malconian <malc@indexdata.com>
Fri, 17 Mar 2023 18:32:20 +0000 (14:32 -0400)
committerJohn Malconian <malc@indexdata.com>
Fri, 17 Mar 2023 18:32:20 +0000 (14:32 -0400)
dev-deploy.yml
dist/README.md [new file with mode: 0644]
dist/solr-5.5.1.tgz [deleted file]
dist/solr-6.1.0.tgz [deleted file]

index 5755962..ed2df3d 100644 (file)
       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 (file)
index 0000000..40668f0
--- /dev/null
@@ -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 (file)
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 (file)
index a2e62ec..0000000
Binary files a/dist/solr-6.1.0.tgz and /dev/null differ