2015-05-24 17:22:57 +00:00
|
|
|
---
|
|
|
|
# This playbook contains common plays that will be run all nodes.
|
|
|
|
|
|
|
|
- name: Install python-apt, aptitude, and debconf-utils
|
|
|
|
shell: apt-get update && apt-get -y install python-apt aptitude debconf-utils
|
|
|
|
- name: Do any package upgrades
|
|
|
|
apt: upgrade=dist
|
|
|
|
- name: Set default locale to en_US.UTF-8
|
|
|
|
debconf: name=locales question='locales/default_environment_locale' value=en_US.UTF-8 vtype='select'
|
|
|
|
- name: Generate locales
|
|
|
|
debconf: name=locales question='locales/locales_to_be_generated' value='en_US.UTF-8 UTF-8' vtype='multiselect'
|
|
|
|
- name: Set timezone area
|
|
|
|
debconf: name=tzdata question='tzdata/Areas' value='Etc' vtype='select'
|
|
|
|
- name: Set timezone
|
|
|
|
debconf: name=tzdata question='tzdata/Zones/Etc' value='UTC' vtype='select'
|
|
|
|
notify:
|
|
|
|
- restart rsyslog
|
|
|
|
- restart cron
|
|
|
|
- name: Install required packages
|
|
|
|
apt: pkg={{ item }} state=latest
|
|
|
|
with_items:
|
|
|
|
- most
|
|
|
|
- zsh
|
|
|
|
- vim
|
|
|
|
- vim-scripts
|
|
|
|
- git
|
|
|
|
- tmux
|
|
|
|
- multitail
|
|
|
|
- mtr-tiny
|
|
|
|
- curl
|
|
|
|
- dnsutils
|
|
|
|
- sudo
|
|
|
|
- gnupg
|
|
|
|
- traceroute
|
|
|
|
- htop
|
|
|
|
- haveged
|
|
|
|
- python-pip
|
|
|
|
- duplicity
|
|
|
|
- python-boto
|
|
|
|
- build-essential
|
|
|
|
- vnstat
|
|
|
|
- python-dev
|
2018-02-12 22:20:52 +00:00
|
|
|
- chrony
|
2016-09-06 23:24:55 +00:00
|
|
|
- letsencrypt
|
2017-08-06 20:03:17 +00:00
|
|
|
- unattended-upgrades
|
2015-05-24 17:22:57 +00:00
|
|
|
- name: Remove exim4 and consolekit
|
|
|
|
apt: pkg={{ item }} state=absent
|
|
|
|
with_items:
|
|
|
|
- exim4-daemon-light
|
|
|
|
- consolekit
|
2017-01-12 20:27:22 +00:00
|
|
|
- name: Ensure haveged, ntp, and vnstat are started on boot
|
2015-05-24 17:22:57 +00:00
|
|
|
service: name={{ item }} enabled=yes
|
|
|
|
with_items:
|
|
|
|
- haveged
|
|
|
|
- vnstat
|
2018-02-12 22:21:28 +00:00
|
|
|
- chrony
|
2017-08-06 20:24:25 +00:00
|
|
|
- name: Ensure that the periodic APT cron task clears out old kernels and does unattended security upgrades
|
|
|
|
copy: src=10periodic dest=/etc/apt/apt.conf.d/10periodic backup=yes owner=root group=root mode=0644
|