Browse Source

added sample.conf.skip

git-svn-id: http://trac.vinelinux.org/repos/projects/vbootstrap/trunk@5375 ec354946-7b23-47d6-9f5a-488ba84defc7
munepi 12 years ago
parent
commit
5187942e1c
1 changed files with 69 additions and 0 deletions
  1. 69 0
      sample.conf.skip

+ 69 - 0
sample.conf.skip

@@ -0,0 +1,69 @@
+## 
+## 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
+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