No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ---
  2. # Defines tasks applicable across all machines in the infrastructure.
  3. - name: Update apt cache
  4. apt: update_cache=yes
  5. - name: Upgrade all safe packages
  6. apt: upgrade=safe
  7. - name: Install necessities and nice-to-haves
  8. apt: pkg={{ item }} state=installed
  9. with_items:
  10. - apache2
  11. - apt-transport-https
  12. - apticron
  13. - build-essential
  14. - debian-goodies
  15. - git
  16. - htop
  17. - iftop
  18. - iotop
  19. - mosh
  20. - python-software-properties
  21. - ruby1.9.3
  22. - screen
  23. - sudo
  24. - update-notifier-common
  25. - vim
  26. - zsh
  27. - name: Install unattended upgrades (Debian/Ubuntu only)
  28. apt: pkg=unattended-upgrades state=installed
  29. when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
  30. - name: Apticron email configuration
  31. template: src=apticron.conf.j2 dest=/etc/apticron/apticron.conf
  32. - name: Disable default Apache site
  33. command: a2dissite 000-default removes=/etc/apache2/sites-enabled/000-default
  34. notify: restart apache
  35. - name: Enable Apache headers module
  36. command: a2enmod headers creates=/etc/apache2/mods-enabled/headers.load
  37. notify: restart apache
  38. - name: Set ServerName for Apache
  39. template: src=fqdn.j2 dest=/etc/apache2/conf.d/fqdn
  40. notify: restart apache
  41. when: ansible_distribution_release != 'trusty'
  42. - name: Create ServerName configuration file for Apache for Ubuntu Trusty
  43. template: src=fqdn.j2 dest=/etc/apache2/conf-available/fqdn.conf
  44. when: ansible_distribution_release == 'trusty'
  45. - name: Set ServerName for Apache for Ubuntu Trusty
  46. command: a2enconf fqdn creates=/etc/apache2/conf-enabled/fqdn.conf
  47. notify: restart apache
  48. when: ansible_distribution_release == 'trusty'
  49. - include: encfs.yml tags=encfs
  50. - include: users.yml tags=users
  51. - include: ssl.yml tags=ssl
  52. - include: ufw.yml tags=ufw
  53. - include: security.yml tags=security
  54. - include: ntp.yml tags=ntp
  55. - include: google_auth.yml tags=google_auth
  56. when: ansible_distribution_release != 'trusty'
  57. - include: google_auth_mod.yml tags=google_auth
  58. when: ansible_distribution_release == 'trusty'