ansible/dnf_update.yml
2021-03-31 22:00:40 -04:00

24 lines
490 B
YAML

# Copyright 2021, Edward Kujawski
# https://gitea.atl.org/ekujawski/ansible
# Licenced under the GPL-3 of later license.
# https://gitea.atl.org/ekujawski/ansible/src/branch/master/LICENSE
- name: DNF Update
hosts: application_servers
tasks:
- name: upgrade all packages
dnf:
name: "*"
state: latest
- name: RPM dependencies
dnf:
name:
- vim-enhanced
- screen
- name: Unconditionally reboot the machine with all defaults
reboot: