tools.yml 386 B

123456789101112131415161718192021
  1. - name: Install Tools
  2. apt: name={{ item }} state=latest update_cache=true
  3. with_items:
  4. - build-essential
  5. - tmux
  6. - vim
  7. - htop
  8. - git-core
  9. - wget
  10. - zlib1g-dev
  11. - libssl-dev
  12. - libreadline-dev
  13. - libyaml-dev
  14. - libxml2-dev
  15. - libxslt1-dev
  16. - libffi-dev
  17. - curl
  18. - libcurl3
  19. - libcurl3-gnutls
  20. - libcurl4-openssl-dev
  21. - nodejs