blob: c4cc85be60d4e430dc231580d122ae2e2f07e179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
APT
{
/* This file belongs in Debian GNU/Hurd's /etc/apt/apt.conf.offline
and will be used when running Debian GNU/Linux. This is only
required when the GNU/Hurd does not have network access. */
Architecture "hurd-i386";
Get::Download-Only "true";
};
Dir
{
/* Use the disc for state information and redirect the status file from
the /var/lib/dpkg default
assumes Debian GNU/Hurd mounted on /misc/hurd and /var mounted underneath this if necessary */
// State::lists should be here, the lists subdirectory.
State "/misc/hurd/var/lib/apt/";
State::status "/misc/hurd/var/lib/dpkg/status";
// Binary caches will be stored locally
Cache::archives "/misc/hurd/var/cache/apt/archives/";
Cache "/tmp/";
// Location of the source list.
Etc "/misc/hurd/etc/apt/";
};
|