Remove files from /var/lib/apt/lists when cleaning up on Ubuntu/Debian
The files inside /var/lib/apt/lists are not needed and should be removed when cleaning up after a package installation. TrivialFix Change-Id: I80e2a11e05739f3dd5bcc3bb8564d8a73ec1ab17
This commit is contained in:
parent
3071d32a3f
commit
4e8bf3f90d
@ -2,6 +2,6 @@
|
|||||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] -%}
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] -%}
|
||||||
yum -y install {{ packages | join(' ') }} && yum clean all
|
yum -y install {{ packages | join(' ') }} && yum clean all
|
||||||
{%- elif base_distro in ['ubuntu', 'debian'] -%}
|
{%- elif base_distro in ['ubuntu', 'debian'] -%}
|
||||||
apt-get -y install --no-install-recommends {{ packages | join(' ') }} && apt-get clean
|
apt-get -y install --no-install-recommends {{ packages | join(' ') }} && apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
Loading…
Reference in New Issue
Block a user