Hi, Can you copy the command line you use to do the installation? The explication is that ansible will run certain task as root, and others as the installation user. Therefore, you must provide Ansible with the sudo password with the switch --ask-become-pass. If you typed sudo before the command, Some file/directory that should have been created as the installation user belong to root. Therefore the install user cannot access them later in the process. Correct: ansible-playbook site.yml --ask-become-pass -vvv Not correct: sudo ansible-playbook site.yml -vvv Jérôme
... View more