cellinfo
/
ansible.apt
Archived
2
0
Fork 0
This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
ansible.apt/templates/etc/apt/apt.conf.d/20dpkg.conf.j2

20 lines
353 B
Plaintext
Raw Normal View History

2017-08-18 10:12:38 +02:00
# {{ ansible_managed }}
Dpkg
{
Options
{
# keep the old version of configuration files without prompting
"--force-confold";
# let dpkg decide by itself when multiple choice
"--force-confdef";
}
Pre-Install-Pkgs
{
# pre-configure all packages with debconf before they are installed
"/usr/sbin/dpkg-preconfigure --apt || true";
};
2017-08-18 10:12:38 +02:00
};