summaryrefslogtreecommitdiff
path: root/hosts/jones
blob: 66098c07204cd081326dd95084139179580f9cf0 (plain)
  1. #!/bin/sh
  2. mountpoint="/mnt/usbstick"
  3. # This may change each time you switch USB stick on the host
  4. usbdev_host="/dev/sda"
  5. # These usually do not change
  6. usbdev_target="/dev/sda"
  7. usbdev_grub="hd0"
  8. # Ordered list of all APT sources (if different from DEFAULT)
  9. aptsources="base security jones"
  10. # URI of base APT repository (if different from DEFAULT)
  11. # TODO: Check if cdebootstrap (like debootstrap) can somehow use file:/ URI
  12. aptsource_base_host="file:/pub/mirrors/debian"
  13. # cdebootstrap seem to only support http URI (unlike chroot'et aptitude)
  14. aptsource_base_cdebootstrap="http://proxy:9999/debian"
  15. # Default list of components (if not just "main")
  16. #aptsource_base_components="main contrib non-free"
  17. # URI and components of additional APT sources (if different from DEFAULT)
  18. aptsource_security_host="file:/pub/mirrors/debian-security"
  19. aptsource_jones_host="http://proxy:9999/jones"
  20. #aptsource_jones_components="kernels misc"
  21. # Device name (or NFS share) to mount to "/pub"
  22. pubdev_host="192.168.102.252:/pub"
  23. # Device type for "/pub"
  24. pubfs="nfs"