Update jetbrains toolbox to not require static version number

This commit is contained in:
pgrondek 2020-07-23 01:51:25 +02:00
parent 9b7132e3fa
commit 111c4b68fa
2 changed files with 28 additions and 6 deletions

View File

@ -1,8 +1,33 @@
---
- name: Unarchive a file that needs to be downloaded (added in 2.0)
- name: Create temp dir
file:
path: /tmp/jetbrains-toolbox
state: directory
- name: Install jetbrains toolbox
become: yes
unarchive:
src: https://download.jetbrains.com/toolbox/jetbrains-toolbox-{{ toolbox.version }}.tar.gz
dest: /usr/local/bin
src: https://data.services.jetbrains.com/products/download?platform=linux&code=TBA
dest: /tmp/jetbrains-toolbox
remote_src: yes
mode: 0755
- name: get folder name
shell: ls /tmp/jetbrains-toolbox
register: dir_name
- name: Move foo to bar
become: yes
command: cp -ra /tmp/jetbrains-toolbox/{{ dir_name.stdout }}/jetbrains-toolbox /usr/local/bin/jetbrains-toolbox
- name: Remove temp directory
become: yes
file:
path: /tmp/jetbrains-toolbox
state: absent
- name: change chmod
become: yes
file:
path: /usr/local/bin/jetbrains-toolbox
mode: '0755'

View File

@ -1,3 +0,0 @@
---
toolbox:
version: 1.17.7275