blob: 63969c20217cec98b4e8bcd2ec48ff193f923b84 [file] [log] [blame]
Luca Prete8d4e8bc2016-08-24 14:49:54 -07001---
2#
3# Installs the IntelliJ IDE
4#
5- name: Making sure Application folder is present
6 file:
7 path: "{{ app_dir }}"
8 state: directory
9 mode: 0777
10
11- name: Downloading IntelliJ
12 get_url:
13 url: "{{ intellij.url }}"
14 dest: "{{ app_dir }}/intellij.tar.gz"
15
16- name: Extracting IntelliJ
17 unarchive:
18 src: "/home/ubuntu/{{ app_dir }}/intellij.tar.gz"
19 dest: "/home/ubuntu/{{ app_dir }}"
20 mode: 0777
21
22- name: Removing IntelliJ tar.gz archive
23 file:
24 path: "{{ app_dir }}/intellij.tar.gz"
25 state: absent