Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ---
  2. - hosts: apps
  3. become: yes
  4. tasks:
  5. - name: Install distutils
  6. apt:
  7. name: python3-distutils
  8. state: present
  9. - name: Run roles
  10. roles:
  11. - geerlingguy.git
  12. - mdklatt.python3
  13. - geerlingguy.nodejs
  14.  
  15. ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.
  16.  
  17. The error appears to be in '/home/simon/ansible/playbooks/base_apps_server.yml': line 9, column 7, but may
  18. be elsewhere in the file depending on the exact syntax problem.
  19.  
  20. The offending line appears to be:
  21.  
  22. state: present
  23. - name: Run roles
  24. ^ here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement