You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order for this to run under ansible 2.1 you either have to create ansible.cfg with the following content (Strongly advised against in Ansible docs):
[defaults]
allow_world_readable_tmpfiles = True
What is more in line with ansible best practices is to run ansible as remote user root using pub-key auth, and don't bother with setting up the provisioning user on the target machine
This also makes the param --ask-become-pass obsolete.
add to vars/all.yml
ansible_user: root
from ckan.yml, db.yml & solr.yml remove the line user: provisioning
The text was updated successfully, but these errors were encountered:
In order for this to run under ansible 2.1 you either have to create ansible.cfg with the following content (Strongly advised against in Ansible docs):
[defaults]
allow_world_readable_tmpfiles = True
What is more in line with ansible best practices is to run ansible as remote user root using pub-key auth, and don't bother with setting up the provisioning user on the target machine
This also makes the param --ask-become-pass obsolete.
add to vars/all.yml
ansible_user: root
from ckan.yml, db.yml & solr.yml remove the line user: provisioning
The text was updated successfully, but these errors were encountered: