diff options
author | Grant Bowman <grantbow at grantbow dot com> | 2002-10-13 12:14:00 +0000 |
---|---|---|
committer | Grant Bowman <grantbow at grantbow dot com> | 2002-10-13 12:14:00 +0000 |
commit | c2ca33c4612a9f10e34d73a0229283b92ff32efe (patch) | |
tree | 352668bf41799dd6da0d7284276e8073ec1070c0 | |
parent | 3f393411dd31fd904f4511673a482fb60227b61f (diff) |
none
-rw-r--r-- | Hurd/AptConfOffline.mdwn | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Hurd/AptConfOffline.mdwn b/Hurd/AptConfOffline.mdwn new file mode 100644 index 00000000..c4cc85be --- /dev/null +++ b/Hurd/AptConfOffline.mdwn @@ -0,0 +1,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/"; + }; |