vbuilder.conf.in 1.6 KB

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