diff --git a/README.md b/README.md index f130d21..1664d4d 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,12 @@ Ansible role which executes apt-get update to ensure the local APT package cache ```yaml apt_reset_source_list: no # reset the /etc/apt/sources.list to the default apt_cache_valid_time: 3600 # Time (in seconds) the apt cache stays valid -apt_install_recommends: yes # whether or not to install the "recommended" packages -apt_install_suggests: yes # whether or not to install the "suggested" packages +apt_install_recommends: no # whether or not to install the "recommended" packages +apt_install_suggests: no # whether or not to install the "suggested" packages ``` +Remark: Beware that setting `apt_install_recommends` and `apt_install_suggests` to `yes` may heavily increase the apt-requirements (and hence disk usage). You should proceed cautiously changing these. + #### License diff --git a/defaults/main.yml b/defaults/main.yml index 858d0b5..4994a27 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -2,5 +2,5 @@ apt_reset_source_list: no # reset the /etc/apt/sources.list to the default apt_cache_valid_time: 3600 # Time (in seconds) the apt cache stays valid -apt_install_recommends: no # whether or not to install the "recommended" packages -apt_install_suggests: no # whether or not to install the "suggested" packages +apt_install_recommends: no # whether or not to install the "recommended" packages +apt_install_suggests: no # whether or not to install the "suggested" packages diff --git a/meta/main.yml b/meta/main.yml index 35d270d..a36b72a 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -2,6 +2,7 @@ galaxy_info: author: pjan vandaele + company: Ansibles description: Manages apt and executes apt-get update to ensure the local APT package cache is up to date. min_ansible_version: 1.4 license: MIT