27 lines
613 B
YAML
27 lines
613 B
YAML
|
---
|
||
|
|
||
|
- name: create ~/.local/opt/firefox/
|
||
|
file:
|
||
|
path: ~/.local/opt
|
||
|
state: directory
|
||
|
mode: '0755'
|
||
|
|
||
|
- name: Fetch Firefox Developer Edition binary
|
||
|
unarchive:
|
||
|
src: https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US
|
||
|
dest: ~/.local/opt/
|
||
|
mode: 0755
|
||
|
remote_src: yes
|
||
|
|
||
|
- name: Link the binary
|
||
|
file:
|
||
|
src: ~/.local/opt/firefox/firefox
|
||
|
dest: ~/.local/bin/firefox-dev
|
||
|
state: link
|
||
|
|
||
|
- name: create firefox-dev.desktop
|
||
|
copy:
|
||
|
src: firefox-dev.desktop
|
||
|
mode: "0644"
|
||
|
dest: /home/jonathan/.local/share/applications/firefox-dev.desktop
|