Hi,
I would like to add an option to the apt module so that is supports the very handy option: --no-install-recommends
By default, apt automatically installs recommended packages, but not suggested packages. Usually, this is fine, but when it comes to anything Java related, the number of recommended packages explodes.
The apt module line could look like this:
action: apt pkg=openjdk-6-jdk state=latest install-recommends=false
with the default being install-recommends=true so it acts the same way it does now.
Thoughts?