check if we are on a supported distro
[ansible.git] / base.yml
1 # basic system preparation
2 - hosts: all
3   tasks:
4   # packages
5   - name: check minimal system version
6     command: "false"
7     when: not (ansible_distribution == "Debian" and ansible_lsb.major_release|int >= 9)
8   - name: detect if we have backports in the sources.list
9     command: fgrep backports /etc/apt/sources.list
10     register: backports
11     failed_when: backports.rc == 2
12   - name: add backports repository
13     apt_repository: repo='deb http://httpredir.debian.org/debian {{ansible_distribution_release}}-backports main contrib non-free' state=present update_cache=yes
14     when: backports.rc != 0
15   - name: get rid of packages we do not want
16     apt: name=exim4-base,rpcbind state=absent autoremove=yes
17   - name: install needrestart, git
18     apt: name=needrestart,git state=latest default_release={{ansible_distribution_release}}-backports
19   # server-scripts
20   - name: clone server-scripts git repository
21     git:
22       repo: 'git://ralfj.de/server-scripts'
23       dest: /root/server-scripts