# Lets check!
if ${scriptsdir}/ddtp-i18n-check.sh . ${scriptdir}/i18n/${TSTAMP}; then
# Yay, worked, lets copy around
- for dir in stretch sid; do
+ for dir in ${extimportdists}; do
if [ -d dists/${dir}/ ]; then
cd dists/${dir}/main/i18n
rsync -aq --delete --delete-after --exclude Translation-en.bz2 --exclude Translation-*.diff/ . ${ftpdir}/dists/${dir}/main/i18n/.
function dep11() {
log "Synchronizing AppStream metadata"
# First sync their newest data
- mkdir -p ${scriptdir}/dep11
- cd ${scriptdir}/dep11
+ local dep11dir="${scriptdir}/dep11"
+ mkdir -p ${dep11dir}
+ cd ${dep11dir}
rsync -aq --delete --delete-after dep11-sync:/does/not/matter . || true
# Lets check!
- if ${scriptsdir}/dep11-basic-validate.py . ${scriptdir}/dep11/; then
+ if ${scriptsdir}/dep11-basic-validate.py . ${dep11dir}/; then
# Yay, worked, lets copy around
- for dir in stretch sid; do
+ for dir in ${extimportdists}; do
if [ -d ${dir}/ ]; then
for comp in main contrib non-free; do
mkdir -p ${ftpdir}/dists/${dir}/${comp}/dep11
cd ${dir}/${comp}
rsync -aq --delete --delete-after --exclude *.tmp . ${ftpdir}/dists/${dir}/${comp}/dep11/.
- cd ${scriptdir}/dep11
+ cd ${dep11dir}
done
fi
done
# save timestamp when we start
function savetimestamp() {
- NOW=`date "+%Y.%m.%d-%H:%M:%S"`
- echo ${NOW} > "${dbdir}/dinstallstart"
+ NOW=`date "+%Y.%m.%d-%H:%M:%S"`
+ echo ${NOW} > "${dbdir}/dinstallstart"
}
function maillogfile() {
# Statefile for the users
DINSTALLSTATE="${webdir}/dinstall.status"
+
+# dists for which we import external data (i18n, dep11)
+# as thats usually testing and unstable, but we need codenames,
+# get em out of the db.
+extimportdists=""
+for suite in testing unstable; do
+ codename=$(dak admin s show ${suite}|grep '^Codename')
+ codename=${codename##* }
+ extimportdists="${extimportdists} ${codename}"
+done