You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Michael Prokop aa5048be65
Provide documentation how to get a local mirror.
15 years ago
etc/grml/fai/config/package_config package config: add software for vmdebootstrap deployment 15 years ago
templates/boot/isolinux grml-live templates: drop ngcpmcast=226.94.1.1 (unused in HA v2 setup for now), default to ngcpeiface=eth0 (no bonding). 15 years ago
README.txt Provide documentation how to get a local mirror. 15 years ago

README.txt

How to build the local mirror
-----------------------------

apt-get clean
apt-get -y --print-uris --reinstall --download-only install $(dpkg --get-selections | awk '{print $1}') | grep "^\'" | cut -d\' -f2 > install.txt
wget -c --input-file install.txt

Place downloaded .deb files in /srv/mirror/debs/ inside
the ISO, then execute ./make_reprepro.sh inside /srv/mirror.

./make_reprepro.sh looks like:

  echo "Setting up configuration for reprepro."
  mkdir -p debian/conf/
  cat > debian/conf/distributions << EOF
  Origin: Debian
  Label: Debian
  Suite: stable
  Version: 6.0
  Codename: squeeze
  Architectures: amd64 source
  Components: main contrib non-free
  Description: Debian Mirror including Sipwise stuff
  Log: logfile
  EOF
  
  echo "Building local Debian mirror based on packages found in debs."
  for f in debs/*deb ; do
    reprepro --silent -b debian includedeb squeeze "$f"
  done

You can remove the debs from /srv/mirror/debs/ then to
save space on the resulting ISO.