Skip to content

Commit

Permalink
Upgrade from Java 8 to Java 11 #39
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Feb 12, 2019
1 parent 1e99bd5 commit b2f9118
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/dataverse-prereqs.yml
Expand Up @@ -20,9 +20,9 @@
yum:
update_cache: yes

- name: install java-1.8.0-openjdk and other packages for RedHat/CentOS.
- name: install openjdk and other packages for RedHat/CentOS.
yum:
name: ['bash-completion', 'elinks', 'git', 'java-1.8.0-openjdk-devel', 'jq', 'net-tools', 'perl', 'python-psycopg2', 'unzip']
name: ['bash-completion', 'elinks', 'git', 'java-11-openjdk-devel', 'jq', 'net-tools', 'perl', 'python-psycopg2', 'unzip']
state: latest
when: ansible_os_family == "RedHat" and
ansible_distribution_major_version == "7"
Expand Down
2 changes: 1 addition & 1 deletion tasks/dataverse-solr.yml
Expand Up @@ -8,7 +8,7 @@

- name: install Solr pre-reqs for RedHat/CentOS 7
yum:
name: ['java-1.8.0-openjdk-devel', 'lsof']
name: ['java-11-openjdk-devel', 'lsof']
state: latest
when: ansible_os_family == "RedHat" and
ansible_distribution_major_version == "7"
Expand Down

0 comments on commit b2f9118

Please sign in to comment.