X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=playbooks%2Fredhat%2Froles%2Finit-system%2Ftasks%2Fdnf.yml;fp=playbooks%2Fredhat%2Froles%2Finit-system%2Ftasks%2Fdnf.yml;h=df265fc899f439d19be6d7ffc88e30a30c4c942d;hb=76942f35b0b978244f917e28694b78f43e8f8860;hp=0000000000000000000000000000000000000000;hpb=ef8a08206532590b791f2950c4b22b4f2f871e97;p=ansible.git diff --git a/playbooks/redhat/roles/init-system/tasks/dnf.yml b/playbooks/redhat/roles/init-system/tasks/dnf.yml new file mode 100644 index 0000000..df265fc --- /dev/null +++ b/playbooks/redhat/roles/init-system/tasks/dnf.yml @@ -0,0 +1,10 @@ +- name: Install minimal software packages + become: true + dnf: + name: ['bash', 'bash-completion', 'bzip2', + 'curl', 'dnsutils', 'dselect', + 'gnupg', 'gnupg2', 'logcheck', 'mc', 'mutt', + 'procmail', 'rsync', 'unzip', 'vim', 'wget', 'zip', + ] + state: latest + update_cache: yes