Compare commits
3 Commits
57662dcf8a
...
111c4b68fa
Author | SHA1 | Date | |
---|---|---|---|
|
111c4b68fa | ||
|
9b7132e3fa | ||
|
c6540540fd |
@ -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
|
become: yes
|
||||||
unarchive:
|
unarchive:
|
||||||
src: https://download.jetbrains.com/toolbox/jetbrains-toolbox-{{ toolbox.version }}.tar.gz
|
src: https://data.services.jetbrains.com/products/download?platform=linux&code=TBA
|
||||||
dest: /usr/local/bin
|
dest: /tmp/jetbrains-toolbox
|
||||||
remote_src: yes
|
remote_src: yes
|
||||||
mode: 0755
|
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'
|
@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
toolbox:
|
|
||||||
version: 1.17.7139
|
|
@ -41,7 +41,7 @@
|
|||||||
- name: install gui apps
|
- name: install gui apps
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
update_cashe: yes
|
update_cache: yes
|
||||||
pkg:
|
pkg:
|
||||||
- redshift
|
- redshift
|
||||||
- compton
|
- compton
|
||||||
|
Loading…
Reference in New Issue
Block a user