Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions roles/firefox/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
state: directory
mode: "750"

- name: Download and Firefox Developer
- name: Download Firefox Developer
get_url:
url: "https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US"
dest: "/tmp/firefox-devedition-latest.tar.xz"
Expand All @@ -43,12 +43,15 @@
remote_src: yes
changed_when: false

- name: Create Profile Developer
ansible.builtin.command: /opt/firefox/firefox-devedition/firefox/firefox -CreateProfile Developer

- name: Create Firefox Developer Desktop Entry
ansible.builtin.template:
src: templates/firefox-developer.desktop.j2
dest: ~/.local/share/applications/firefox-developer.desktop

- name: Download and Firefox Nightly
- name: Download Firefox Nightly
get_url:
url: "https://download.mozilla.org/?product=firefox-nightly-latest-ssl&os=linux64&lang=en-US"
dest: "/tmp/firefox-nightly-latest.tar.xz"
Expand All @@ -73,6 +76,9 @@
remote_src: yes
changed_when: false

- name: Create Profile Nightly
ansible.builtin.command: /opt/firefox/firefox-nightly/firefox/firefox -CreateProfile Nightly

- name: Create Firefox Nightly Desktop Entry
ansible.builtin.template:
src: templates/firefox-nightly.desktop.j2
Expand Down
Loading