SHA-1:b7fcbd9076903bb98474a7b6c5b4d860ece09bcd, from <http://d-i.alioth.debian.org/pub/etch/babelbox/babelbox.tgz>
13 lines
251 B
Bash
Executable file
13 lines
251 B
Bash
Executable file
#!/bin/sh -e
|
|
. /usr/share/debconf/confmodule
|
|
|
|
#anna-install apt-mirror-setup || true
|
|
|
|
if [ -f /etc/lsb-release ]; then
|
|
. /etc/lsb-release
|
|
if [ -n "$DISTRIB_CODENAME" ]; then
|
|
db_set mirror/suite "$DISTRIB_CODENAME"
|
|
fi
|
|
fi
|
|
exit 0
|
|
exec choose-mirror
|