8 echo "Usage: $0 filename version arch changes_file"
12 TARBALL="$1" # Tarball to read, compressed with gzip
15 CHANGES="$4" # Changes file for the upload
22 # Check validity of version number
23 # Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDD<suite>x, YYYYMMDD+<suite>x and the +b[0-9] on the end
24 if ! echo "$VERSION" | grep -Eq "^[0-9]{8}(|(\.|\+?[a-z]+)[0-9]+)(\+b[0-9])?$"; then
25 error "Invalid version: '$VERSION'"
28 # Get the target suite from the Changes file
29 # NOTE: it may be better to pass this to the script as a parameter!
30 SUITE="$(grep "^Distribution:" "$CHANGES" | awk '{print $2}')"
33 error "Error: unable to determine suite from Changes file"
39 SUITE="${SUITE}-proposed-updates"
43 # This must end with /
44 TARGET="/srv/ftp-master.debian.org/ftp/dists/$SUITE/main/installer-$ARCH/"
46 # Check validity of the target directory
47 # This could fail, for example for new architectures; doing
48 # a regular BYHAND is safer in that case
49 if [ ! -d "$TARGET" ]; then
52 # Check that there isn't already a directory for this version
53 if [ -d "$TARGET/$VERSION" ]; then
54 error "Directory already exists: $TARGET/$VERSION"
57 # We know the VERSION is sane by here, we just need to make sure we escape the + in +b1 (if any)
58 # It needs 'g' as well as we may have +$DIST+b[0-9]
59 VERSIONREGEXP="$(echo $VERSION | sed 's@+@\\\+@g')"
61 # We know all data to be in ./installer-<arch>/<version>; see if there's
62 # anything else in the tarball except that and the 'current' symlink
63 if tar tzf "$TARBALL" | \
64 grep -Eqv "^\./(installer-$ARCH/($VERSIONREGEXP/.*|current|)|)$"; then
65 error "Tarball contains unexpected contents"
68 # Create a temporary directory where to store the images
70 TMPDIR="$(mktemp -td byhand-di.XXXXXX)"
72 # If we fail somewhere, cleanup the temporary directory
78 # Extract the data into the temporary directory
79 tar xzf "$TARBALL" --directory="$TMPDIR" "./installer-$ARCH/"
81 # Check the 'current' symlink
82 if [ ! -L $TMPDIR/installer-$ARCH/current ]; then
83 error "Missing 'current' symlink"
84 elif [ X"$(readlink "$TMPDIR/installer-$ARCH/current")" != X"$VERSION" ]; then
85 error "Incorrect 'current' symlink"
88 # We should have an MD5SUMS file; use that for a final check
89 if [ -r "$TMPDIR/installer-$ARCH/$VERSION/images/MD5SUMS" ]; then
91 cd "$TMPDIR/installer-$ARCH/$VERSION/images"
92 md5sum -c --status MD5SUMS || error "Error while checking MD5SUMS"
95 error "Missing MD5SUMS file"
98 # Move the data to the final location
99 mv "$TMPDIR/installer-$ARCH/$VERSION" "$TARGET"
100 mv "$TMPDIR/installer-$ARCH/current" "$TARGET"
103 find "$TARGET/$VERSION" -type d -exec chmod 755 {} +
104 find "$TARGET/$VERSION" -type f -exec chmod 644 {} +
106 # Make sure nothing symlinks outside of the ftpdir
107 # Shouldnt happen, but better be sure.
108 symlinks -d -r /srv/ftp-master.debian.org/ftp