diff --git a/localhost.yml b/localhost.yml index d164ce2..b3059e4 100644 --- a/localhost.yml +++ b/localhost.yml @@ -7,7 +7,6 @@ - ubuntu-firefox - signal - dotfiles - - jetbrains - prusa-slicer - intellij - autofs diff --git a/roles/jetbrains/tasks/jetbrains-toolbox.yml b/roles/jetbrains/tasks/jetbrains-toolbox.yml deleted file mode 100644 index 42c5c1c..0000000 --- a/roles/jetbrains/tasks/jetbrains-toolbox.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -- name: Create temp dir - file: - path: /tmp/jetbrains-toolbox - state: directory - -- name: Install jetbrains toolbox - become: yes - unarchive: - 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' \ No newline at end of file diff --git a/roles/jetbrains/tasks/main.yml b/roles/jetbrains/tasks/main.yml deleted file mode 100644 index fbbfa7f..0000000 --- a/roles/jetbrains/tasks/main.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -- import_tasks: jetbrains-toolbox.yml - when: ansible_distribution == "Ubuntu" - -- import_tasks: system-setup.yml - when: ansible_distribution == "Ubuntu"