summaryrefslogtreecommitdiffstats
path: root/molecule/ubuntu
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-24 16:09:47 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-24 16:09:47 +0100
commit1f6ff02cde4fcac760873e4b56ff425dd07e201e (patch)
treeee91c652309c0d0679d03bd04b46fc18f0e05b88 /molecule/ubuntu
parent9c9c80f240e45102e8c037feb617c282d4b36479 (diff)
Fix ansible_is_chroot in testing
Diffstat (limited to 'molecule/ubuntu')
-rw-r--r--molecule/ubuntu/converge.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/molecule/ubuntu/converge.yml b/molecule/ubuntu/converge.yml
index df6e60f1..7af37d38 100644
--- a/molecule/ubuntu/converge.yml
+++ b/molecule/ubuntu/converge.yml
@@ -32,7 +32,6 @@
PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}"
vars:
ansible_become_method: sudo
- ansible_is_chroot: false
locales:
- "en_US.UTF-8 UTF-8"
timezone: "GMT"
@@ -46,6 +45,10 @@
password_store_repo_url: "https://github.com/octocat/Spoon-Knife"
firefox_install_browserpass: true
firefox_install_passff: true
+ pre_tasks:
+ - name: "Override is_chroot fact for container environment"
+ ansible.builtin.set_fact:
+ ansible_facts: "{{ ansible_facts | combine({'is_chroot': false}) }}"
roles:
- role: "locales"
- role: "timezone"