classroom/roles/idea/tasks/main_lin.yml

13 lines
362 B
YAML
Raw Permalink Normal View History

2023-09-11 20:30:48 +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:
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