tools.yml 469 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Ensure some useful packages are installed
  3. apt: name={{ item }} install_recommends=no
  4. with_items:
  5. - bash-completion
  6. - vim
  7. - htop
  8. - mtr-tiny
  9. - bind9-host
  10. - curl
  11. - tmux
  12. - psmisc
  13. - ngrep
  14. - aptitude
  15. - iperf
  16. - pv
  17. - bwm-ng
  18. - rsync
  19. - git
  20. - name: Ensure vim is default editor
  21. alternatives: name=editor path=/usr/bin/vim.basic
  22. - name: Set defaults for vim
  23. copy: src=vimrc dest=/etc/vim/vimrc.local