autoinst

scripts to make automated installations of debian easy
git clone git://deadbeef.fr/autoinst.git
Log | Files | Refs | README | LICENSE

02lanconf (806B)


      1 # only install necessary packages, to avoid bloating the
      2 # system. Remember: this system is *not* for casual users.
      3 APT::Install-Recommends "false";
      4 APT::Install-Suggests "false";
      5 
      6 # use LAN proxy to fetch packages, which implies there is
      7 # no need for local caching.
      8 Acquire::http::proxy "http://10.0.0.201:3142/";
      9 
     10 ## In theory, next comment should apply. In practice, debs
     11 ## ends up in /, which is *not* what is wanted.
     12 # uncomment to disable some internal cache using by apt and
     13 # friends. It is safe, will reclaim few mebioctets, but
     14 # will probably slow down things, thus I believe it's not
     15 # useful to do so by default.
     16 # I would love to have more information about what those
     17 # files really are for.
     18 #Dir::Cache "";
     19 #Dir::Cache::archives "";
     20 #Dir::Cache::pkgcache "";
     21 #Dir::Cache::srcpkgcache "";