/apt-move.conf

http://github.com/brinkman83/bashrc · Config · 51 lines · 37 code · 14 blank · 0 comment · 0 complexity · 99a492d829219e2b357398b8f1208086 MD5 · raw file

  1. # Configuration file for the apt-move script.
  2. #
  3. # You should modify the following configuration to suit your system.
  4. # See the apt-move(8) manpage for information about these settings.
  5. #
  6. # The defaults for this file are simply the settings I currently use.
  7. # Configuration for apt-move script --------------------------------------
  8. # The sites in ``/etc/apt/sources.list'' that you wish to mirror.
  9. APTSITES="/all/"
  10. # The absolute path to your debian directory (top of your local mirror).
  11. # This MUST appear as the first entry of your sources.list if you use
  12. # sync or mirror.
  13. LOCALDIR=/mirrors/debian
  14. # The default distribution (see the apt-move(8) manpage for details)
  15. DIST=stable
  16. # The package types you want to mirror.
  17. # Possible values are: binary, source, and both (use only one).
  18. PKGTYPE=binary
  19. # The full (absolute) path to your local cache of package files. The default
  20. # will work for the apt-get packages, unless you've reconfigured apt.
  21. FILECACHE=/var/cache/apt/archives
  22. # The full (absolute) path to your local cache of Packages files. The
  23. # default will work for the apt-get Packages, unless you've reconfigured apt.
  24. LISTSTATE=/var/lib/apt/lists
  25. # Do you want apt-move to delete obsolete files from your mirror? (yes/no)
  26. DELETE=no
  27. # Maximum percentage of files to delete during a normal run.
  28. MAXDELETE=20
  29. # Set this to yes if you wish to keep the originals for move/movefile.
  30. COPYONLY=no
  31. # Set this to 'none gzip' to get uncompressed Packages/Sources files.
  32. PKGCOMP=gzip
  33. # Set this to yes to make apt-move generate Contents files.
  34. CONTENTS=no
  35. # Set this to key name to be used for signing Release files.
  36. GPGKEY=
  37. # End Configuration ------------------------------------------------------