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