Install libpam-systemd before installing needrestart
[ansible.git] / roles / base / tasks / main.yml
1 # packages
2 - name: check minimal system version
3   when: not (ansible_distribution == "Debian" and ansible_lsb.major_release|int >= 9)
4   command: "false"
5 - name: detect if we have backports in the sources.list
6   command: 'fgrep backports /etc/apt/sources.list'
7   register: backports
8   failed_when: backports.rc == 2
9   changed_when: False
10 - name: add backports repository
11   when: backports.rc != 0
12   apt_repository: repo='deb http://httpredir.debian.org/debian {{ansible_distribution_release}}-backports main contrib non-free' state=present update_cache=yes
13 - name: get rid of packages we do not want
14   apt: name=exim4-base,rpcbind,procmail,fetchmail state=absent autoremove=yes
15 - name: install some basic tools
16   apt: name=nano,aptitude,rsync,git,mercurial,curl,apt-transport-https,psmisc,dnsutils,tree,htop,acl,libpam-systemd state=latest
17 - name: install needrestart (from backports)
18   apt: name=needrestart state=latest default_release={{ansible_distribution_release}}-backports
19 # configuration
20 - name: configure root shell
21   copy:
22     dest: /root/{{ item }}
23     remote_src: True
24     src: /etc/skel/{{ item }}
25   loop:
26   - .profile
27   - .bashrc
28   - .bash_logout
29 - name: configure systemd-timesyncd
30   copy:
31     dest: /etc/systemd/timesyncd.conf
32     src: files/timesyncd.conf
33   notify: timesyncd