summaryrefslogtreecommitdiffstats
path: root/roles/firefox/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/firefox/tasks')
-rw-r--r--roles/firefox/tasks/main.yml29
1 files changed, 0 insertions, 29 deletions
diff --git a/roles/firefox/tasks/main.yml b/roles/firefox/tasks/main.yml
index e354005f..a412df0c 100644
--- a/roles/firefox/tasks/main.yml
+++ b/roles/firefox/tasks/main.yml
@@ -8,35 +8,6 @@
name: "{{ firefox_package }}"
state: "present"
-- name: "Initialize Firefox default profile"
- ansible.builtin.command: "timeout 3 firefox --headless"
- failed_when: false
- args:
- creates: "{{ firefox_folder }}/profiles.ini"
- changed_when: false
-
-- name: "Find default Firefox profile directory"
- ansible.builtin.find:
- paths: "{{ firefox_folder }}"
- patterns: "*.default*"
- file_type: "directory"
- register: firefox_default_profile
-
-- name: "Set Firefox profile path"
- ansible.builtin.set_fact:
- firefox_profile_path: "{{ firefox_default_profile.files[0].path }}"
- when: firefox_default_profile.matched > 0
-
-- name: "Set firefox_user_prefs fact"
- ansible.builtin.set_fact:
- firefox_user_prefs: "{{ firefox_default_user_prefs | combine(firefox_user_prefs_override) }}"
-
-- name: "Deploy user.js to Firefox profile"
- ansible.builtin.template:
- src: "user.js.j2"
- dest: "{{ firefox_profile_path }}/user.js"
- mode: "0644"
-
- name: "Install browserpass extension for Firefox"
ansible.builtin.include_tasks: "install_browserpass.yml"
when: firefox_install_browserpass | default(false)