mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. CONF.sh
|
|
make distclean
|
|
make ${CODENAME}_status
|
|
make mirrorcheck
|
|
disks=`du -sm ${MIRROR}/dists/${CODENAME}/main/disks-${ARCH}/current/. | \
|
|
awk '{print $1}'`
|
|
make list COMPLETE=1 SIZELIMIT1=$(((630 - ${disks}) * 1024 * 1024)) SRCSIZELIMIT=$((635 * 1024 * 1024))
|
|
make bin-official_images
|