From ce3dc86f785aae23fef9933f4cba5e941957c1b8 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Fri, 16 Feb 2024 10:37:34 -0500 Subject: [PATCH] add troubleshoot for ansible --- docs/integrations/platforms/ansible.mdx | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/docs/integrations/platforms/ansible.mdx b/docs/integrations/platforms/ansible.mdx index 93f1e5202..2d524d55c 100644 --- a/docs/integrations/platforms/ansible.mdx +++ b/docs/integrations/platforms/ansible.mdx @@ -5,20 +5,19 @@ description: "How to use Infisical for secret management in Ansible" The documentation for using Infisical to manage secrets in Ansible is currently available [here](https://galaxy.ansible.com/ui/repo/published/infisical/vault/). +## Troubleshoot -If you get this Python error when you running the lookup plugin:- + + If you get this Python error when you running the lookup plugin:- -``` -objc[72832]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug. -Fatal Python error: Aborted -``` + ``` + objc[72832]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug. + Fatal Python error: Aborted + ``` -You will need to add this to your shell environment or ansible wrapper script:- + You will need to add this to your shell environment or ansible wrapper script:- -``` -export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES -``` - - - Have any questions? Join Infisical's [community Slack](https://infisical.com/slack) for quick support. - + ``` + export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES + ``` +