Advertisement
Guest User

Untitled

a guest
Dec 6th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. me$ ansible-playbook --ask-pass -u root site.yml -i prod
  2. SSH password:
  3.  
  4. PLAY [app] ***********************************************************************************************************
  5.  
  6. TASK [Gathering Facts] ***********************************************************************************************
  7.  
  8. paramiko: The authenticity of host '1.2.3.4' can't be established.
  9. The ssh-rsa key fingerprint is abc23.
  10. Are you sure you want to continue connecting (yes/no)?
  11. no
  12. fatal: [1.2.3.4]: UNREACHABLE! => {"changed": false, "msg": "host connection rejected by user", "unreachable": true}
  13. to retry, use: --limit @/Users/me/dev/linode/dply2/site.retry
  14.  
  15. PLAY RECAP ***********************************************************************************************************
  16. 1.2.3.4 : ok=0 changed=0 unreachable=1 failed=0
  17.  
  18. me$ ansible-playbook --ask-pass -u root site.yml -i prod -vvv
  19. ansible-playbook 2.4.2.0
  20. config file = None
  21. configured module search path = [u'/Users/me/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  22. ansible python module location = /usr/local/Cellar/ansible/2.4.2.0/libexec/lib/python2.7/site-packages/ansible
  23. executable location = /usr/local/bin/ansible-playbook
  24. python version = 2.7.14 (default, Sep 25 2017, 09:54:19) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)]
  25. No config file found; using defaults
  26. SSH password:
  27. Parsed /Users/me/dev/linode/dply2/prod inventory source with ini plugin
  28.  
  29. PLAYBOOK: site.yml ***************************************************************************************************
  30. 1 plays in site.yml
  31.  
  32. PLAY [app] ***********************************************************************************************************
  33.  
  34. TASK [Gathering Facts] ***********************************************************************************************
  35. Using module file /usr/local/Cellar/ansible/2.4.2.0/libexec/lib/python2.7/site-packages/ansible/modules/system/setup.py
  36. <45.79.83.15> ESTABLISH CONNECTION FOR USER: root on PORT 22 TO 45.79.83.15
  37. <45.79.83.15> EXEC /bin/sh -c 'echo ~ && sleep 0'
  38. <45.79.83.15> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114 `" && echo ansible-tmp-1512615293.4-175922602963114="` echo /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114 `" ) && sleep 0'
  39. <45.79.83.15> PUT /var/folders/q1/l8vz6n8d18q6f8y92btl32lm0000gn/T/tmpts6SLc TO /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114/setup.py
  40. <45.79.83.15> EXEC /bin/sh -c 'chmod u+x /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114/ /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114/setup.py && sleep 0'
  41. <45.79.83.15> EXEC /bin/sh -c '/usr/bin/python /root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114/setup.py; rm -rf "/root/.ansible/tmp/ansible-tmp-1512615293.4-175922602963114/" > /dev/null 2>&1 && sleep 0'
  42. ok: [45.79.83.15]
  43. META: ran handlers
  44. META: ran handlers
  45. META: ran handlers
  46.  
  47. PLAY RECAP ***********************************************************************************************************
  48. 45.79.83.15 : ok=1 changed=0 unreachable=0 failed=0
  49.  
  50. me$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement