17 lines
453 B
YAML
17 lines
453 B
YAML
|
---
|
||
|
- import_tasks: centos-dracut.yml
|
||
|
when: ansible_distribution == "CentOS"
|
||
|
|
||
|
- name: Upgrade Fedora and CentOS packages
|
||
|
when: ansible_distribution == "CentOS" or ansible_distribution == "Fedora"
|
||
|
become: true
|
||
|
dnf:
|
||
|
state: latest
|
||
|
name: "*"
|
||
|
exclude: "{{ ','.join(exclude | default(['kernel*'])) }}"
|
||
|
|
||
|
# - name: Upgrade APT packages
|
||
|
# when: ansible_distribution == "Debian" or ansible_distribution == "Ubuntu"
|
||
|
# become: true
|
||
|
# apt:
|