1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- ---
- # Defines tasks applicable across all machines in the infrastructure.
-
- - name: Update apt cache
- apt: update_cache=yes
-
- - name: Upgrade all safe packages
- apt: upgrade=safe
-
- - name: Install necessities and nice-to-haves
- apt: pkg={{ item }} state=installed
- with_items:
- - sudo
- - vim
- - htop
- - iftop
- - iotop
- - mosh
- - zsh
- - git
- - ruby1.9.3
- - screen
- - apache2
- - build-essential
- - apticron
- - update-notifier-common
- - debian-goodies
- - apt-transport-https
- - python-software-properties
-
- - name: Install unattended upgrades (Debian/Ubuntu only)
- apt: pkg=unattended-upgrades state=installed
- when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
-
- - name: Apticron email configuration
- template: src=apticron.conf.j2 dest=/etc/apticron/apticron.conf
-
- - name: Disable default Apache site
- command: a2dissite 000-default removes=/etc/apache2/sites-enabled/000-default
- notify: restart apache
-
- - name: Enable Apache headers module
- command: a2enmod headers creates=/etc/apache2/mods-enabled/headers.load
- notify: restart apache
-
- - name: Set ServerName for Apache
- template: src=fqdn.j2 dest=/etc/apache2/conf.d/fqdn
- notify: restart apache
-
- - include: encfs.yml tags=encfs
- - include: users.yml tags=users
- - include: ssl.yml tags=ssl
- - include: ufw.yml tags=ufw
- - include: security.yml tags=security
- - include: ntp.yml tags=ntp
- - include: google_auth.yml tags=google_auth
|