fd9f159142
- Acquire::CDROM::mount value in apt.conf(5) changed from /mnt/cdrom to /media/cdrom - apt-pipe utility added
23 lines
501 B
Plaintext
23 lines
501 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 "/media/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";
|
|
};
|
|
};
|