summaryrefslogtreecommitdiffstats
path: root/molecule/debian
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/debian
parent9c9c80f240e45102e8c037feb617c282d4b36479 (diff)
Fix ansible_is_chroot in testing
Diffstat (limited to 'molecule/debian')
-rw-r--r--molecule/debian/converge.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/molecule/debian/converge.yml b/molecule/debian/converge.yml
index 6aaa0337..4e08cac7 100644
--- a/molecule/debian/converge.yml
+++ b/molecule/debian/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"
@@ -57,6 +56,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"