sample.conf.skip 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ##
  2. ## description: This is a sample profile of vbuilder
  3. ##
  4. ## Please save this file as sample.conf.
  5. ##
  6. ## This profile is read after loading default settings.
  7. ## vbuilder loads
  8. ## - system wide configurations (from /etc/vbootstrap/vbuilder.conf)
  9. ## - given profile (from /etc/vbootstrap/profile.d/*.conf)
  10. ## - given command-line parameters
  11. ## where given command-line parameters override the settings given profile,
  12. ## and the settings given profile override system wide settings.
  13. ## If you use a profile of vbuilder, you may not override the settings
  14. ## given profile.
  15. ##
  16. ## Vine Linux Version for chroot
  17. #VERSION=6
  18. ## Archtecture for chroot
  19. #ARCH=x86_64
  20. ## Local repositories
  21. #LOCAL_REPOS='
  22. #rpm http://repos $(ARCH) sample
  23. #rpm-src http://repos $(ARCH) sample
  24. #'
  25. ## Additional base packages
  26. #ADD_BASE_PKGS="firefox"
  27. ## The following configurations overwrite the default vbuilder configuration.
  28. ## Please see /etc/vbootstrap/vbuilder.conf.
  29. ## Default categories for chroot
  30. ## default: CATEGORIES=main,plus,nonfree
  31. #CATEGORIES=main,plus
  32. ## Default location to fetch base packages of vbootstrap
  33. ## default: VBOOTSTRAP_FETCH_URL=http://updates.vinelinux.org/apt
  34. #VBOOTSTRAP_FETCH_URL=http://ftp.jaist.ac.jp/pub/Linux/Vine/apt
  35. ## The top dirctory for vbootstrap
  36. ## default: VBOOTSTRAP_DIR=/var/local/vbootstrap
  37. ## If the memory size of your system is enough large (about 4GB or larger),
  38. ## you may give VBOOTSTRAP_DIR to a directory on tmpfs
  39. ## For example, VBOOTSTRAP_DIR=/dev/shm/vbootstrap
  40. #VBOOTSTRAP_DIR=/var/local/vbootstrap
  41. ## Default directory to store unionfs images of vbootstrap
  42. ## default: CACHE_DIR=/var/local/vbootstrap/unionfs
  43. ## If the memory size of your system is enough large (about 4GB or larger),
  44. ## you may give UNIONFS_DIR to a directory on tmpfs
  45. ## For example, UNIONFS_DIR=/dev/shm/vbootstrap/unionfs
  46. ##
  47. ## We remark that you may better assign either VBOOTSTRAP_DIR or UNIONFS_DIR
  48. ## if you make a bootstrap on tmpfs.
  49. #UNIONFS_DIR=/var/local/vbootstrap/unionfs
  50. ## Default directory to cache rpms of /var/cache/apt/archives in chroot
  51. ## default: CACHE_DIR=/var/local/vbootstrap/cache
  52. #CACHE_DIR=/var/local/vbootstrap/cache
  53. ## Default directory to store built rpms
  54. ## default: BUILT_RPMS_DIR=${HOME}/rpm/vbuilder
  55. #BUILT_RPMS_DIR=${HOME}/rpm/vbuilder
  56. ## end of file