2019-10-03 14:15:29 +00:00
|
|
|
---
|
|
|
|
- name: Check for profiles.ini
|
2021-02-19 20:32:22 +00:00
|
|
|
ansible.builtin.stat:
|
2019-10-03 14:15:29 +00:00
|
|
|
path: "{{ ansible_env.HOME }}/.mozilla/firefox/profiles.ini"
|
|
|
|
register: profile_ini
|
2019-10-03 14:24:33 +00:00
|
|
|
- name: Copy Firefox preferences to Profile0
|
2021-02-19 20:32:22 +00:00
|
|
|
ansible.builtin.copy:
|
2019-10-03 14:15:29 +00:00
|
|
|
src: user.js
|
|
|
|
dest: "{{ ansible_env.HOME }}/.mozilla/firefox/{{ lookup('ini', 'Path section=Profile0 file={{ ansible_env.HOME }}/.mozilla/firefox/profiles.ini') }}/user.js"
|
|
|
|
when: profile_ini.stat.exists
|