blob: 13fce19f67a4805bbc4775544682f15556574965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Troubleshoutting
When the error is "Operation not permitted" when "chown: changing ownership" you
just need to activate the following options in file `ansible.cfg`:
```
allow_world_readable_tmpfiles = True
pipelining = True
```
Source: https://stackoverflow.com/questions/47873671/becoming-non-root-user-in-ansible-fails?rq=1
|