blob: 4aef113b23ed3dc89209ae9604b48d93cecb7079 (
plain)
- #!/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="http://proxy:9999/debian"
- # cdebootstrap seem to only support http URI (unlike chroot'et aptitude)
- aptsource_base_cdebootstrap="http://proxy:9999/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="http://proxy:9999/debian-security"
- aptsource_jones_host="http://proxy:9999/jones"
- #aptsource_jones_components="kernels misc"
- # Device name (or NFS share) to mount to "/pub"
- #pubdev_host="192.168.102.252:/pub"
- pubdev_host=""
- # Device type for "/pub"
- #pubfs="nfs"
- pubfs=""
|