diff options
Diffstat (limited to 'cheat/.cheat/ansible')
-rw-r--r-- | cheat/.cheat/ansible | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cheat/.cheat/ansible b/cheat/.cheat/ansible new file mode 100644 index 0000000..13fce19 --- /dev/null +++ b/cheat/.cheat/ansible @@ -0,0 +1,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 |