babelbox/choose-mirror.postinst
2012-07-03 16:38:15 -06:00

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