Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pjan committed Mar 14, 2014
1 parent cc7d46c commit 1b93622
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b93622

Please sign in to comment.