Thanks to Kai findings (shared in another thread) I can confirm that
following change to Ansible 2.7.2 fixes the problem:

--- unarchive.py.bak    2019-06-04 11:41:24.000000000 +0100
+++ unarchive.py    2019-06-04 11:46:27.000000000 +0100
@@ -316,7 +316,7 @@
         fut_owner = fut_uid = None
         if self.file_args['owner']:
             try:
-                tpw = pwd.getpwname(self.file_args['owner'])
+                tpw = pwd.getpwnam(self.file_args['owner'])
             except:
                 try:
                     tpw = pwd.getpwuid(self.file_args['owner'])

I'm going to updated the ticket.

Wawrzek
-- 
Dr  Wawrzyniec NiewodniczaƄski    or Wawrzek for short
  PhD in Quantum Chemistry  & MSc in Molecular Engineering
   WWW: http://wawrzek.name E-MAIL: [email protected]
      Linux User #177124

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAC7-vpCqmjrK%3DeWbz8hviyw4uEZ4LNWc4N-95ZUMVbX41ftXtA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to