From 02e4e7d48f49378e00fc8fa609ce1451588054fc Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Sun, 17 Jan 2021 12:12:53 +0100 Subject: [PATCH] Sort APT packages Signed-off-by: Yohann D'ANELLO --- roles/baseconfig/tasks/main.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/roles/baseconfig/tasks/main.yml b/roles/baseconfig/tasks/main.yml index 1c91511..f68155c 100644 --- a/roles/baseconfig/tasks/main.yml +++ b/roles/baseconfig/tasks/main.yml @@ -4,26 +4,26 @@ when: ansible_os_family == "Debian" apt: name: - - sudo - - molly-guard # prevent reboot - - ntp # network time sync - - apt # better than apt-get - - nano # for vulcain - - vim # better than nano - - emacs-nox # for maman - - htop # better than top - - zsh # to be able to ssh @erdnaxe - - fish # to motivate @edpibu - - oidentd # postgresql identification - - aptitude # nice to have for Ansible - acl # advanced ACL - - iotop # monitor i/o - - tree # create a graphical tree of files + - apt # better than apt-get + - aptitude # nice to have for Ansible - bash-completion # because bash + - emacs-nox # for maman + - fish # to motivate @edpibu - git # code versioning + - htop # better than top + - iotop # monitor i/o - less # i like cats - - screen # Vulcain asked for this - lsb-release + - molly-guard # prevent reboot + - nano # for vulcain + - ntp # network time sync + - oidentd # postgresql identification + - screen # Vulcain asked for this + - sudo + - tree # create a graphical tree of files + - vim # better than nano + - zsh # to be able to ssh @erdnaxe update_cache: true register: apt_result retries: 3