Open HarryWeppner opened 8 months ago
I am working around this by using another directory as the miniconda_tmp_dir
.
I also ran into this error, I tried resolving it by adding the become: {{escalate_ansible}} to the task but that changed the permissions of the /tmp directory for me from 777 to 744 which broke a lot of other things on the system.
Same error here. /tmp is a special folder in the unix system with permissions of type 1777 (or sticky bit on the other). Setting “/tmp” as the default and making sure in the tasks that the folder is 755 has consequences for any unix system. I suggest simply changing the default value of miniconda_tmp_dir
to “/tmp/miniconda”. This solves the problem in the default execution of the role
@andrewrothstein, when attempting to use the newly published role
v6.3.0
, the added check that theminiconda_tmp_dir
exists fails as it can't change the mode on the default/tmp
directory.