You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
544 B

- apt:
name: [ "libwebkit2gtk-4.0-dev" ]
become: true
name: Install libwebkit2gtk
tags:
- install
- deno
- productivity
- ansible.builtin.get_url:
dest: /opt/deno-install.sh
mode: '777'
url: https://deno.land/x/install/install.sh
name: Download deno install script
register: denoinstall
tags:
- install
- notes
- become: true
become_user: "{{my_user}}"
name: Install deno
shell: |
/opt/deno-install.sh
tags:
- install
- deno
- productivity
when: denoinstall.changed