1 # basic system preparation
5 - name: check minimal system version
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
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
20 - name: clone server-scripts git repository
22 repo: 'git://ralfj.de/server-scripts'
23 dest: /root/server-scripts