Petr Losev

Results 6 comments of Petr Losev

Did some debugging of ansible.builtin.uri module and found how to solve this. You need to run your playbook with -K or --ask-become-pass (ask for privilege escalation password) and you will...

To @sixtus: If it crashes during multithreading tasks on your mac then it isn't related to this problem and you have to add this line "export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES" to your .zshrc/.bashrc...

@sixtus with -K argument and local sudo password provided?

@sixtus when I was debugging it I could see that get-uri module downloads the github version page locally to parse the latest version and it needs access to stderr which...

There is always a luks UUID even for the drive with no partitions nor the header which is detached. You can take the luks UUID from the detached header stored...

You can just add the kernel parameter to your nixos configuration: ``` boot.kernelParams = [ "i915.enable_guc=3" ]; ``` It worked for me.