summaryrefslogtreecommitdiffstats
path: root/roles/firefox
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-24 16:24:28 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-24 16:24:28 +0100
commit6d927c0f20f95dfb1ece8766dfaf34805bc2f820 (patch)
tree7fcc3918e290e31309d74eb0b784fa6a00318ee3 /roles/firefox
parentb39722e58c1935f4d92c052cf89c941164150c35 (diff)
Fix ansible_facts to use only bracket notation instead of dot notation
Co-authored-by: claude.ai
Diffstat (limited to 'roles/firefox')
-rw-r--r--roles/firefox/vars/archlinux.yml2
-rw-r--r--roles/firefox/vars/debian.yml2
-rw-r--r--roles/firefox/vars/ubuntu.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/roles/firefox/vars/archlinux.yml b/roles/firefox/vars/archlinux.yml
index ac5ed73b..878d362c 100644
--- a/roles/firefox/vars/archlinux.yml
+++ b/roles/firefox/vars/archlinux.yml
@@ -1,6 +1,6 @@
---
firefox_package: "firefox"
-firefox_folder: "{{ ansible_facts['env'].HOME }}/.mozilla/firefox"
+firefox_folder: "{{ ansible_facts['env']['HOME'] }}/.mozilla/firefox"
firefox_browserpass_packages:
- "browserpass"
diff --git a/roles/firefox/vars/debian.yml b/roles/firefox/vars/debian.yml
index b0318d09..793f6773 100644
--- a/roles/firefox/vars/debian.yml
+++ b/roles/firefox/vars/debian.yml
@@ -1,6 +1,6 @@
---
firefox_package: "firefox-esr"
-firefox_folder: "{{ ansible_facts['env'].HOME }}/.mozilla/firefox"
+firefox_folder: "{{ ansible_facts['env']['HOME'] }}/.mozilla/firefox"
firefox_browserpass_packages:
- "webext-browserpass"
diff --git a/roles/firefox/vars/ubuntu.yml b/roles/firefox/vars/ubuntu.yml
index bb92bf72..1f5c420d 100644
--- a/roles/firefox/vars/ubuntu.yml
+++ b/roles/firefox/vars/ubuntu.yml
@@ -1,6 +1,6 @@
---
firefox_package: "firefox"
-firefox_folder: "{{ ansible_facts['env'].HOME }}/snap/firefox/common/.mozilla/firefox"
+firefox_folder: "{{ ansible_facts['env']['HOME'] }}/snap/firefox/common/.mozilla/firefox"
firefox_browserpass_packages:
- "webext-browserpass"