blob: 63969c20217cec98b4e8bcd2ec48ff193f923b84 [file] [log] [blame]
---
#
# Installs the IntelliJ IDE
#
- name: Making sure Application folder is present
file:
path: "{{ app_dir }}"
state: directory
mode: 0777
- name: Downloading IntelliJ
get_url:
url: "{{ intellij.url }}"
dest: "{{ app_dir }}/intellij.tar.gz"
- name: Extracting IntelliJ
unarchive:
src: "/home/ubuntu/{{ app_dir }}/intellij.tar.gz"
dest: "/home/ubuntu/{{ app_dir }}"
mode: 0777
- name: Removing IntelliJ tar.gz archive
file:
path: "{{ app_dir }}/intellij.tar.gz"
state: absent