Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.68 KB | None | 0 0
  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.  
  8. # Configuration for apt-move script --------------------------------------
  9.  
  10. # The sites in ``/etc/apt/sources.list'' that you wish to mirror.
  11. APTSITES="/all/"
  12.  
  13. # The absolute path to your debian directory (top of your local mirror).
  14. # This MUST appear as the first entry of your sources.list if you use
  15. # sync or mirror.
  16. LOCALDIR=/var/www/debian
  17.  
  18. # The default distribution (see the apt-move(8) manpage for details)
  19. DIST=wheezy
  20.  
  21. # The package types you want to mirror.
  22. # Possible values are: binary, source, and both (use only one).
  23. PKGTYPE=binary
  24.  
  25. # The full (absolute) path to your local cache of package files. The default
  26. # will work for the apt-get packages, unless you've reconfigured apt.
  27. FILECACHE=/var/cache/apt/archives
  28.  
  29. # The full (absolute) path to your local cache of Packages files.  The
  30. # default will work for the apt-get Packages, unless you've reconfigured apt.
  31. LISTSTATE=/var/lib/apt/lists
  32.  
  33. # Do you want apt-move to delete obsolete files from your mirror? (yes/no)
  34. DELETE=yes
  35.  
  36. # Maximum percentage of files to delete during a normal run.
  37. MAXDELETE=20
  38.  
  39. # Set this to yes if you wish to keep the originals for move/movefile.
  40. COPYONLY=no
  41.  
  42. # Set this to 'none gzip' to get uncompressed Packages/Sources files.
  43. PKGCOMP=gzip
  44.  
  45. # Set this to yes to make apt-move generate Contents files.
  46. CONTENTS=yes
  47.  
  48. # Set this to key name to be used for signing Release files.
  49. GPGKEY=
  50.  
  51. # End Configuration ------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement