123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ##
- ## description: This is a sample profile of vbuilder
- ##
- ## Please save this file as sample.conf.
- ##
- ## This profile is read after loading default settings.
- ## vbuilder loads
- ## - system wide configurations (from /etc/vbootstrap/vbuilder.conf)
- ## - given profile (from /etc/vbootstrap/profile.d/*.conf)
- ## - given command-line parameters
- ## where given command-line parameters override the settings given profile,
- ## and the settings given profile override system wide settings.
- ## If you use a profile of vbuilder, you may not override the settings
- ## given profile.
- ##
- ## Vine Linux Version for chroot
- #VERSION=6.0
- ## Archtecture for chroot
- #ARCH=x86_64
- ## Local repositories
- #LOCAL_REPOS='
- #rpm http://repos $(ARCH) sample
- #rpm-src http://repos $(ARCH) sample
- #'
- ## Additional base packages
- #ADD_BASE_PKGS="firefox"
- ## The following configurations overwrite the default vbuilder configuration.
- ## Please see /etc/vbootstrap/vbuilder.conf.
- ## Default categories for chroot
- ## default: CATEGORIES=main,plus,nonfree
- #CATEGORIES=main,plus
- ## Default location to fetch base packages of vbootstrap
- ## default: VBOOTSTRAP_FETCH_URL=http://updates.vinelinux.org/apt
- #VBOOTSTRAP_FETCH_URL=http://ftp.jaist.ac.jp/pub/Linux/Vine/apt
- ## The top dirctory for vbootstrap
- ## default: VBOOTSTRAP_DIR=/var/local/vbootstrap
- ## If the memory size of your system is enough large (about 4GB or larger),
- ## you may give VBOOTSTRAP_DIR to a directory on tmpfs
- ## For example, VBOOTSTRAP_DIR=/dev/shm/vbootstrap
- #VBOOTSTRAP_DIR=/var/local/vbootstrap
- ## Default directory to store unionfs images of vbootstrap
- ## default: CACHE_DIR=/var/local/vbootstrap/unionfs
- ## If the memory size of your system is enough large (about 4GB or larger),
- ## you may give UNIONFS_DIR to a directory on tmpfs
- ## For example, UNIONFS_DIR=/dev/shm/vbootstrap/unionfs
- ##
- ## We remark that you may better assign either VBOOTSTRAP_DIR or UNIONFS_DIR
- ## if you make a bootstrap on tmpfs.
- #UNIONFS_DIR=/var/local/vbootstrap/unionfs
- ## Default directory to cache rpms of /var/cache/apt/archives in chroot
- ## default: CACHE_DIR=/var/local/vbootstrap/cache
- #CACHE_DIR=/var/local/vbootstrap/cache
- ## Default directory to store built rpms
- ## default: BUILT_RPMS_DIR=${HOME}/rpm/vbuilder
- #BUILT_RPMS_DIR=${HOME}/rpm/vbuilder
- ## end of file
|