From 1b93622ca34790644dfcd1478ad02c686bcde070 Mon Sep 17 00:00:00 2001 From: pjan Date: Fri, 14 Mar 2014 09:24:18 +0800 Subject: [PATCH] Version 1.0.0 --- README.md | 6 ++++-- defaults/main.yml | 4 ++-- meta/main.yml | 1 + 3 files changed, 7 insertions(+), 4 deletions(-) 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