Advertisement
Guest User

Untitled

a guest
May 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.87 KB | None | 0 0
  1. [fedora-25:ansible (devel % u=)]$ ANSIBLE_IGNORE_WARNINGS_FILTER='.*BLIPPY.*|.*action.*' ansible-playbook ping.yml
  2. [WARNING]: something else
  3.  
  4. [WARNING]: provided hosts list is empty, only localhost is available
  5.  
  6.  
  7. PLAY [The first Play] *****************************************************************************************************************************************************************************************************************
  8.  
  9. TASK [Gathering Facts] ****************************************************************************************************************************************************************************************************************
  10. ok: [localhost]
  11.  
  12. TASK [debug some_var unsafe msg] ******************************************************************************************************************************************************************************************************
  13. ok: [localhost] => {
  14. "msg": "blip"
  15. }
  16.  
  17. TASK [debug var_jsonish] **************************************************************************************************************************************************************************************************************
  18. ok: [localhost] => {
  19. "var_jsonish": [
  20. 1,
  21. 2,
  22. 3
  23. ]
  24. }
  25.  
  26. TASK [debug json_ish msg] *************************************************************************************************************************************************************************************************************
  27. ok: [localhost] => {
  28. "msg": "[1,2,3] __ [1, 2, 3]"
  29. }
  30.  
  31. TASK [debug json_ish from_json msg] ***************************************************************************************************************************************************************************************************
  32. ok: [localhost] => {
  33. "msg": [
  34. 1,
  35. 2,
  36. 3
  37. ]
  38. }
  39.  
  40. TASK [set_fact] ***********************************************************************************************************************************************************************************************************************
  41. ok: [localhost]
  42.  
  43. TASK [debug blippy] *******************************************************************************************************************************************************************************************************************
  44. ok: [localhost] => {
  45. "blippy": [
  46. 1,
  47. 2,
  48. 3
  49. ]
  50. }
  51.  
  52. TASK [debug blippy type] **************************************************************************************************************************************************************************************************************
  53. ok: [localhost] => {
  54. "msg": "list"
  55. }
  56.  
  57. TASK [debug json_ish msg type] ********************************************************************************************************************************************************************************************************
  58. ok: [localhost] => {
  59. "msg": "[1,2,3] AnsibleUnicode"
  60. }
  61.  
  62. TASK [debug some_var1] ****************************************************************************************************************************************************************************************************************
  63. ok: [localhost] => {
  64. "msg": "blip"
  65. }
  66.  
  67. TASK [debug some_var] *****************************************************************************************************************************************************************************************************************
  68. ok: [localhost] => {
  69. "msg": "blip AnsibleUnicode"
  70. }
  71.  
  72. TASK [debug some_int] *****************************************************************************************************************************************************************************************************************
  73. ok: [localhost] => {
  74. "msg": "37 int"
  75. }
  76.  
  77. TASK [debug int] **********************************************************************************************************************************************************************************************************************
  78. ok: [localhost] => {
  79. "msg": "foo 37"
  80. }
  81.  
  82. TASK [copy time over for a change/diff but] *******************************************************************************************************************************************************************************************
  83. changed: [localhost]
  84.  
  85. TASK [debug just to trigger a handler] ************************************************************************************************************************************************************************************************
  86. ok: [localhost] => {
  87. "msg": "Force enable haproxy"
  88. }
  89.  
  90. TASK [foo] ****************************************************************************************************************************************************************************************************************************
  91. ok: [localhost]
  92.  
  93. TASK [debug] **************************************************************************************************************************************************************************************************************************
  94. ok: [localhost] => {
  95. "msg": "<built-in method get of dict object at 0x7f438ca414b0> <built-in method items of dict object at 0x7f438ca414b0> is_when_valid"
  96. }
  97.  
  98. TASK [fail] ***************************************************************************************************************************************************************************************************************************
  99. fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "yup, failed"}
  100. to retry, use: --limit @/home/adrian/src/ansible/ping.retry
  101.  
  102. PLAY RECAP ****************************************************************************************************************************************************************************************************************************
  103. localhost : ok=17 changed=2 unreachable=0 failed=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement