Dmitry V. Levin
4ef124c6d0
- apt-pkg/rpm/rpmpm.cc(pkgRPMPM::ExecRPM): honor "quiet" option. - Additional sorting hacks for virtual packages (mouse).
23 lines
499 B
Plaintext
23 lines
499 B
Plaintext
/*
|
|
* This is the main configuration file for the APT suite of tools,
|
|
* see apt.conf(5) for details.
|
|
*/
|
|
|
|
// See apt-cdrom(8) for details.
|
|
Acquire::CDROM::Copy "true";
|
|
Acquire::CDROM::mount "/mnt/cdrom";
|
|
|
|
RPM
|
|
{
|
|
Allow-Duplicated {
|
|
// Old-style kernels.
|
|
"^(NVIDIA_)?(kernel|alsa)[0-9]*(-adv|-linus)?($|-up|-smp|-secure|-custom|-enterprise|-BOOT|-tape|-aureal)";
|
|
// New-style kernels.
|
|
"^kernel-(image|modules)-.*";
|
|
};
|
|
Hold {
|
|
// Old-style kernels.
|
|
"^(kernel|alsa)[0-9]+-source";
|
|
};
|
|
};
|