]> git.phdru.name Git - ansible.git/blob - playbooks/roles/init-system/tasks/dnf.yml
Feat(init-system): Install `whois`
[ansible.git] / playbooks / roles / init-system / tasks / dnf.yml
1 - name: Install minimal software packages
2   become: true
3   dnf:
4     name: ['bash', 'bash-completion', 'bzip2',
5            'curl', 'dnsutils', 'dselect',
6            'gnupg', 'gnupg2', 'logcheck', 'mc', 'mutt',
7            'procmail', 'rsync', 'unzip', 'vim', 'wget', 'whois', 'zip',
8           ]
9     state: latest
10     update_cache: yes