diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-11-26 18:11:08 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-11-26 18:11:08 +0100 |
| commit | 8f685d383330836caa95ab974279a318764d23a4 (patch) | |
| tree | 57db5a58b64fa953195117d0583cc400a893fb5e /roles/firefox/templates | |
| parent | eb4148f706000eef04f7c35e12940dbe71654f95 (diff) | |
Revert adding user.js config
Since the configs were mainly to control UI pref (which is not usable
with user.js, as it will always override manual customization)
The rest of the features provided by user.js isn't necessary and are
already covered by policies.
So for now, I'm removing this user.js integration, maybe revisit it
later if it's proven to be useful, ATM, it complicates and brittles the
setup without providing any additional value.
Diffstat (limited to 'roles/firefox/templates')
| -rw-r--r-- | roles/firefox/templates/user.js.j2 | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/roles/firefox/templates/user.js.j2 b/roles/firefox/templates/user.js.j2 deleted file mode 100644 index 547ccf8f..00000000 --- a/roles/firefox/templates/user.js.j2 +++ /dev/null @@ -1,13 +0,0 @@ -// Firefox user.js - User preferences -// This file is automatically generated by Ansible -// Manual changes will be overwritten - -{% for pref, value in firefox_user_prefs.items() %} -{% if value is string %} -user_pref("{{ pref }}", "{{ value }}"); -{% elif value is boolean %} -user_pref("{{ pref }}", {{ value | lower }}); -{% else %} -user_pref("{{ pref }}", {{ value }}); -{% endif %} -{% endfor %} |
