]> git.phdru.name Git - ansible.git/blob - playbooks/roles/debian-init-system/tasks/main.yml
76a06fe117201189a05fb4327973d68a5fb4fd70
[ansible.git] / playbooks / roles / debian-init-system / tasks / main.yml
1 - name: Install minimal software packages
2   become: true
3   apt:
4     autoclean: yes
5     autoremove: yes
6     install_recommends: no
7     name: ['apt', 'aptitude', 'dselect', 'bash', 'bash-completion',
8            'curl', 'mc', 'python', 'python3', 'rsync', 'vim', 'wget',
9            'arj', 'bzip2', 'lzip', 'lzma', 'lzop', 'p7zip',
10            'unzip', 'zip', 'xz-utils',
11            'gnupg', 'gnupg2',
12           ]
13     purge: yes
14     state: latest
15     update_cache: yes