File: 60disable-contents-fetching.conf

package info (click to toggle)
apt-file 3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 636 kB
  • sloc: perl: 907; sh: 93; makefile: 40
file content (14 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 The following snippet will disable fetching of all Contents files
 defined by the default 50apt-file.conf.

 CAVEATS:
 * This will *not* overrule explicitly enabled indices or sources
   lists that explicitly enables a given index target.
   (e.g. a [target+=Contents-deb] will trump this file)
*/

Acquire::IndexTargets {
	deb::Contents-deb::DefaultEnabled "false";
	deb-src::Contents-dsc::DefaultEnabled "false";
};