vbuilder.conf.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ##
  2. ## vbuilder configuration file
  3. ##
  4. ## This configuration is read at the begin of vbuilder.
  5. ## Default categories for chroot
  6. ## default: CATEGORIES=@@VBUILDER_CATEGORIES@@
  7. CATEGORIES=@@VBUILDER_CATEGORIES@@
  8. ## Default location to fetch base packages of vbootstrap
  9. ## default: VBOOTSTRAP_FETCH_URL=@@VBUILDER_VBOOTSTRAP_FETCH_URL@@
  10. VBOOTSTRAP_FETCH_URL=@@VBUILDER_VBOOTSTRAP_FETCH_URL@@
  11. ## The top dirctory for vbootstrap
  12. ## default: VBOOTSTRAP_DIR=@@VBUILDER_VBOOTSTRAP_DIR@@
  13. ## If the memory size of your system is enough large (about 4GB or larger),
  14. ## you may give VBOOTSTRAP_DIR to a directory on tmpfs
  15. ## For example, VBOOTSTRAP_DIR=/dev/shm/vbootstrap
  16. VBOOTSTRAP_DIR=@@VBUILDER_VBOOTSTRAP_DIR@@
  17. ## Default directory to store unionfs images of vbootstrap
  18. ## default: CACHE_DIR=@@VBUILDER_UNIONFS_DIR@@
  19. ## If the memory size of your system is enough large (about 4GB or larger),
  20. ## you may give UNIONFS_DIR to a directory on tmpfs
  21. ## For example, UNIONFS_DIR=/dev/shm/vbootstrap/unionfs
  22. ##
  23. ## We remark that you may better assign either VBOOTSTRAP_DIR or UNIONFS_DIR
  24. ## if you make a bootstrap on tmpfs.
  25. UNIONFS_DIR=@@VBUILDER_UNIONFS_DIR@@
  26. ## Default directory to cache rpms of /var/cache/apt/archives in chroot
  27. ## default: CACHE_DIR=@@VBUILDER_CACHE_DIR@@
  28. CACHE_DIR=@@VBUILDER_CACHE_DIR@@
  29. ## Default directory to store built rpms
  30. ## default: BUILT_RPMS_DIR=@@VBUILDER_BUILT_RPMS_DIR@@
  31. BUILT_RPMS_DIR=@@VBUILDER_BUILT_RPMS_DIR@@
  32. ## end of file