2022-09-28 10:55:23 +00:00
|
|
|
- name: Install IDEA
|
|
|
|
block:
|
|
|
|
- name: Create destination for JetBrains IDEA
|
|
|
|
file:
|
|
|
|
path: /opt/IDEA
|
|
|
|
state: directory
|
|
|
|
- name: Download and unpack JetBrains IDEA
|
|
|
|
unarchive:
|
2023-09-07 21:19:33 +00:00
|
|
|
src: https://download.jetbrains.com/idea/ideaIC-2023.2.1.tar.gz
|
2022-09-28 10:55:23 +00:00
|
|
|
dest: /opt/IDEA
|
2023-09-07 21:19:33 +00:00
|
|
|
creates: /opt/IDEA/idea-IC-232.9559.62/build.txt
|
2022-09-28 10:55:23 +00:00
|
|
|
remote_src: yes
|