Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created May 23, 2021 15:01
Show Gist options
  • Save brpaz/40dccfd988f2032ec7e84831f4ef3247 to your computer and use it in GitHub Desktop.
Save brpaz/40dccfd988f2032ec7e84831f4ef3247 to your computer and use it in GitHub Desktop.

Revisions

  1. brpaz created this gist May 23, 2021.
    14 changes: 14 additions & 0 deletions main.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    - name: Jetbrains Toolbox
    unarchive:
    src: https://download.jetbrains.com/toolbox/jetbrains-toolbox-{{ jetbrains_toolbox_version }}.tar.gz
    remote_src: true
    dest: "{{ bin_dir }}"
    extra_opts: [--strip-components=1]
    mode: a+x
    become: true

    - name: Jetbrains Toolbox | Install Desktop file
    copy:
    src: applications/jetbrains-toolbox.desktop
    dest: "{{ applications_dir }}/jetbrains-toolbox.desktop"
    mode: 0644