aboutsummaryrefslogtreecommitdiffstats
path: root/roles/fedora/tasks/dnf.yml
blob: 50f11ec7d6d258dd8aa8097bcc93e649a07f56a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
- name: Configure dnf.conf
  vars:
    dnf_conf: '{{ dnf_conf_default|combine(dnf_conf_role) }}'
  ini_file:
    path: '/etc/dnf/dnf.conf'
    no_extra_spaces: yes
    create: no
    section: "{{ item.key.split('.',1)[0] }}"
    option:  "{{ item.key.split('.',1)[1] }}"
    value:   "{{ item.value|ternary(item.value,omit) }}"
    state:   "{{ item.value|ternary('present','absent') }}"
  with_dict: '{{ dnf_conf }}'

- name: Remove packages
  vars:
    dnf_packages: '{{ dnf_packages_default|combine(dnf_packages_role) }}'
  dnf:
    name: "{{ dnf_packages|dictsort(true)|selectattr(1,'equalto','absent')|map(attribute=0)|list }}"
    state: absent
  tags:
  - packages

- name: Upgrade all packages
  dnf:
    name: '*'
    state: latest
  tags:
  - upgrade
  - packages

- name: Install packages
  vars:
    dnf_packages: '{{ dnf_packages_default|combine(dnf_packages_role) }}'
  dnf:
    name: "{{ dnf_packages|dictsort(true)|selectattr(1,'equalto','present')|map(attribute=0)|list }}"
    state: present
  tags:
  - packages

- name: Configure dnf-makecache timer
  systemd:
    name: dnf-makecache.timer
    enabled: "{{ dnf_makecache|ternary('yes','no') }}"
    masked: no
    state: "{{ dnf_makecache|ternary('started','stopped') }}"
  when: not chroot
- name: '- when in chroot'
  command: "systemctl {{ dnf_makecache|ternary('enable','disable') }} dnf-makecache.timer"
  when: chroot

# vim: set ts=2 sw=2 et: