diff options
author | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-06-10 18:18:37 +0000 |
---|---|---|
committer | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-06-10 18:18:37 +0000 |
commit | b6d85b04286d30498a11aaac36e75032b1e72801 (patch) | |
tree | 2fc597a2ae2cf69a5cc6b3e7162f02f89613b08d /config-HOST | |
parent | 369cb1e5a343ec9e7c6f05de64f0eb102488d77f (diff) |
Added all work so far...
git-svn-id: svn+ssh://xayide/home/jonas/private_svn/fleshybrid/trunk@2 8f53b18a-e215-0410-8885-9f593d34873e
Diffstat (limited to 'config-HOST')
-rw-r--r-- | config-HOST | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/config-HOST b/config-HOST new file mode 100644 index 0000000..26edb54 --- /dev/null +++ b/config-HOST @@ -0,0 +1,34 @@ +#!/bin/sh + +mountpoint="/mnt/usbstick" + +# This may change each time you switch USB stick on the host +usbdev_host="/dev/sda" + +# These usually do not change +usbdev_target="/dev/sda" +usbdev_grub="hd0" + +# Ordered list of all APT sources (if different from DEFAULT) +#aptsources="base security jones" +aptsources="base security" + +# URI of base APT repository (if different from DEFAULT) +# TODO: Check if cdebootstrap (like debootstrap) can somehow use file:/ URI +aptsource_base_host="file:/pub/mirrors/debian/" + +# cdebootstrap seem to only support http URI (unlike chroot'et aptitude) +aptsource_base_cdebootstrap="http://mirrors.jones.dk/debian/" + +# Default list of components (if not just "main") +#aptsource_base_components="main contrib non-free" + +# URI and components of additional APT sources (if different from DEFAULT) +#aptsource_security_host="file:/pub/mirrors/debian-security/" +#aptsource_jones_host="http://debian.jones.dk/" +#aptsource_jones_components="kernels misc" + +# Device name (or NFS share) to mount to "/pub" +pubdev_host="192.168.102.252:/pub" +# Device type for "/pub" +pubfs="nfs" |