Skip to content

Commit

Permalink
Update ldconfig file for OpenJDK 11
Browse files Browse the repository at this point in the history
  • Loading branch information
sdickenson committed Feb 11, 2021
1 parent fe48515 commit 0d1baa2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
external_roles
*.vagrant
*.swo
*.swp
*.pyc
*.DS_Store
*.retry
.idea
*vault*
*callback_plugins/profile_tasks.*

# autoenv
.env
7 changes: 6 additions & 1 deletion templates/etc.ld.so.conf.d.java.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
/usr/java/default/jre/lib/amd64
/usr/java/default/jre/lib/amd64/server
{% else %}
{% if java_version | version('1.8.0', '>') %}
/usr/lib/jvm/jre/lib
/usr/lib/jvm/jre/lib/server
{% else %}
/usr/lib/jvm/jre/lib/amd64
/usr/lib/jvm/jre/lib/amd64/server
{% endif %}
{% endif %}
{% endif %}

0 comments on commit 0d1baa2

Please sign in to comment.