classroom/roles/linroom/tasks/IDEA.yml
2023-09-07 23:19:33 +02:00

13 lines
362 B
YAML

- name: Install IDEA
block:
- name: Create destination for JetBrains IDEA
file:
path: /opt/IDEA
state: directory
- name: Download and unpack JetBrains IDEA
unarchive:
src: https://download.jetbrains.com/idea/ideaIC-2023.2.1.tar.gz
dest: /opt/IDEA
creates: /opt/IDEA/idea-IC-232.9559.62/build.txt
remote_src: yes