diff options
author | neodarz <neodarz@neodarz.net> | 2019-03-31 23:13:43 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-03-31 23:13:59 +0200 |
commit | df7a1f481e26f9c495db76809f7e9b7f7b6e30d3 (patch) | |
tree | 08968f70b4b6eeca0997c8f95e709067d6bea106 /cheat/.cheat/ansible | |
parent | d94c1d0d81cfa007a6ef3ad81f4c4f08e74dd781 (diff) | |
download | dotfiles_ascii-df7a1f481e26f9c495db76809f7e9b7f7b6e30d3.tar.xz dotfiles_ascii-df7a1f481e26f9c495db76809f7e9b7f7b6e30d3.zip |
Add more cheat
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 |