ansible/roles/debian_common/tasks/main.yml

68 lines
1.7 KiB
YAML
Raw Normal View History

---
# Should contain only small tools that everyone can't live without
- name: Install basic tools
when: ansible_os_family == "Debian"
apt:
2019-03-11 18:02:29 +01:00
name:
- acl # advanced ACL
2019-08-29 07:02:15 +02:00
- apt # better than apt-get
- aptitude # nice to have for Ansible
- bash-completion # because bash
- curl # better than wget
2019-08-29 07:02:15 +02:00
- git # code versioning
- htop # better than top
- iotop # monitor i/o
2019-08-29 07:02:15 +02:00
- less # i like cats
2019-12-05 14:07:48 +01:00
- lsb-release
- molly-guard # prevent reboot
- nano # for vulcain
- ntp # network time sync
- screen # Vulcain asked for this
- sudo
- tmux # For shirenn
- tree # create a graphical tree of files
- vim # better than nano
- zsh # to be able to ssh @erdnaxe
- dnsutils # dig
2019-03-11 18:02:29 +01:00
update_cache: true
register: apt_result
retries: 3
until: apt_result is succeeded
# Configure APT mirrors on Debian Stretch
- name: Configure APT mirrors
when:
- ansible_distribution == 'Debian'
- ansible_distribution_release == 'stretch'
template:
src: apt/sources.list.j2
dest: /etc/apt/sources.list
mode: 0644
# APT-List Changes : send email with changelog
- include_tasks: apt-listchanges.yml
# APT Unattended upgrades
- include_tasks: apt-unattended.yml
2020-05-07 12:53:59 +02:00
- name: Configure resolvconf
template:
src: resolv.conf
dest: /etc/resolv.conf
mode: 0644
- name: Remove smartmontols
apt:
pkg: smartmontools
state: absent
2021-01-17 17:06:59 +01:00
autoremove: true
when: ansible_system_vendor == "QEMU"
- name: Remove useless packages from the cache
apt:
2021-01-17 17:06:59 +01:00
autoclean: true
- name: Remove dependencies that are no longer required
apt:
2021-01-17 17:06:59 +01:00
autoremove: true