1234567891011121314151617181920212223 |
- ---
- - name: Install required packages
- package: name={{ item }} state=latest
- with_items:
- - vim
- - nano
- - htop
- - python3
- - python3-pip
- - acl
- - bash-completion
- - python3-apt
- - name: install debian specific packages
- package: name={{ item }} state=latest
- when: ansible_distribution == 'Debian'
- with_items:
- - lsb-release
- - build-essential
- - unattended-upgrades
|