diff options
| author | Steve Langasek <[email protected]> | 2023-10-17 10:01:58 -0700 |
|---|---|---|
| committer | Steve Langasek <[email protected]> | 2023-11-03 16:10:25 +0000 |
| commit | 18624a6da6b8f0c9ad4f63a0b889fa3f6354c1e6 (patch) | |
| tree | 30f6ce3a4e85bd970fcae0bf64dad1ddb02730ce /CONF.sh | |
| parent | 4aa23546d885000c4e25f91e0b12dfa038ed6e26 (diff) | |
Drop jigdo support from the code.
Now that we are not generating jigdo files for our source images, drop jigdo
support from the code as well, simplifying things and making it clearer what
we're looking at.
Diffstat (limited to 'CONF.sh')
| -rw-r--r-- | CONF.sh | 77 |
1 files changed, 0 insertions, 77 deletions
@@ -30,12 +30,6 @@ unset SRCEXCLUDE || true unset NODEPENDS || true unset NORECOMMENDS || true unset NOSUGGESTS || true -unset DOJIGDO || true -unset JIGDOTEMPLATEURL || true -unset JIGDOFALLBACKURLS || true -unset JIGDOINCLUDEURLS || true -unset JIGDOSCRIPT || true -unset JIGDO_OPTS || true unset DEFBINSIZE || true unset DEFSRCSIZE || true unset FASTSUMS || true @@ -347,55 +341,10 @@ if [ -z "$PREINSTALLED_IMAGE_FILESYSTEM" ]; then export PREINSTALLED_IMAGE_FILESYSTEM=ext4 fi -# Produce jigdo files: -# 0/unset = Don't do jigdo at all, produce only the full iso image. -# 1 = Produce both the iso image and jigdo stuff. -# 2 = Produce ONLY jigdo stuff; no iso image is created (saves lots -# of disk space). - -DOJIGDO=0 - # If we aren't doing jigdo, we also don't need to generate md5 checksum # files in jigdo format SKIPMIRRORCHECK=yes -# HTTP/FTP URL for directory where you intend to make the templates -# available. You should not need to change this; the default value "" -# means "template in same dir as the .jigdo file", which is usually -# correct. If it is non-empty, it needs a trailing slash. "%ARCH%" -# will be substituted by the current architecture. -#export JIGDOTEMPLATEURL="" -# -# Name of a directory on disc to create data for a fallback server in. -# Should later be made available by you at the URL given in -# JIGDOFALLBACKURLS. In the directory, two subdirs named "Debian" and -# "Non-US" will be created, and filled with hard links to the actual -# files in your FTP archive. Because of the hard links, the dir must -# be on the same partition as the FTP archive! If unset, no fallback -# data is created, which may cause problems - see README. -#export JIGDOFALLBACKPATH="$(OUT)/snapshot/" -# -# Space-separated list of label->URL mappings for "jigdo fallback -# server(s)" to add to .jigdo file. If unset, no fallback URL is -# added, which may cause problems - see README. -export JIGDOFALLBACKURLS="Debian=http://archive.ubuntu.com/ubuntu/" -# commented out until the snapshot archives actually exist to avoid -# silly server load -#export JIGDOFALLBACKURLS="Debian=http://archive.ubuntu.com/cdimage/jigit/$CODENAME/snapshot/" -# -# Space-separated list of "include URLs" to add to the .jigdo file. -# The included files are used to provide an up-to-date list of Debian -# mirrors to the jigdo _GUI_application_ (_jigdo-lite_ doesn't support -# "[Include ...]"). -#export JIGDOINCLUDEURLS="http://cdimage.debian.org/debian-cd/debian-servers.jigdo" -# -# $JIGDOTEMPLATEURL and $JIGDOINCLUDEURLS are passed to -# "tools/jigdo_header", which is used by default to generate the -# [Image] and [Servers] sections of the .jigdo file. You can provide -# your own script if you need the .jigdo file to contain different -# data. -#export JIGDOSCRIPT="myscript" - # If set, use the md5sums from the main archive, rather than calculating # them locally export FASTSUMS=1 @@ -407,32 +356,6 @@ export PUBLISH_URL="http://cdimage.debian.org/jigdo-area" export PUBLISH_NONUS_URL="http://non-US.cdimage.debian.org/jigdo-area" export PUBLISH_PATH="/home/jigdo-area/" -# Specify files and directories to *exclude* from jigdo processing. These -# files on each CD are expected to be different to those on the mirror, or -# are often subject to change. Any files matching entries in this list will -# simply be placed straight into the template file. -export JIGDO_EXCLUDE="'README*' /doc/ /md5sum.txt /.disk/ /pics/ 'Release*' 'Packages*' 'Sources*' 'Contents*'" - -# Specify files and directories to *exclude* from jigdo processing. These -# files on each CD are expected to be different to those on the mirror, or -# are often subject to change. Any files matching entries in this list will -# simply be placed straight into the template file. -export JIGDO_INCLUDE="/pool/" - -# Specify the minimum file size to consider for jigdo processing. Any files -# smaller than this will simply be placed straight into the template file. -export JIGDO_OPTS="-jigdo-min-file-size 1024" - -for EXCL in $JIGDO_EXCLUDE -do - JIGDO_OPTS="$JIGDO_OPTS -jigdo-exclude $EXCL" -done - -for INCL in $JIGDO_INCLUDE -do - JIGDO_OPTS="$JIGDO_OPTS -jigdo-force-md5 $INCL" -done - # Where to find the boot disks #export BOOTDISKS=$TOPDIR/ftp/skolelinux/boot-floppies |
