File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 4
4
- name : add webupd8team java repository for Ubuntu
5
5
apt_repository : repo='ppa:webupd8team/java'
6
6
when : ansible_distribution == "Ubuntu"
7
+ tags : java
7
8
8
9
- name : add webupd8team java repository for Debian "wheezy"
9
10
script : install_debian_webupd8team_repo.sh
10
11
when :
11
12
- ansible_distribution == "Debian"
12
13
- ansible_distribution_release == "wheezy"
14
+ tags : java
13
15
14
16
- name : autoaccept license for java
15
17
shell : executable=/bin/bash debconf-set-selections <<< "oracle-java7-installer shared/accepted-oracle-license-v1-1 select true"
18
+ tags : java
16
19
17
20
- name : install or update Oracle Java 7 JDK via apt
18
21
apt : pkg={{ item }} update_cache=yes state=latest install_recommends=yes
19
22
with_items :
20
- - oracle-java7-installer
21
- - oracle-java7-set-default
22
- tags :
23
- - java
23
+ - oracle-java7-installer
24
+ - oracle-java7-set-default
25
+ tags : java
24
26
25
27
- name : download floatingdecimal-0.1.jar to /usr/lib/jvm (fixes monitor contention when parsing doubles due to a static synchronized method)
26
28
command : creates=/usr/lib/jvm/floatingdecimal-0.1.jar chdir=/usr/lib/jvm curl -O http://repo1.maven.org/maven2/io/airlift/floatingdecimal/0.1/floatingdecimal-0.1.jar
29
+ tags : java
27
30
28
31
- name : set fact jdk_installed
29
- set_fact : jdk_installed=true
32
+ set_fact : jdk_installed=true
33
+ tags : java
You can’t perform that action at this time.
0 commit comments