case "$MODE" in
    commandline)
        add_option "late-packages" "`eval_gettext "list of packages to install as part of the final installation"`" "advanced" "true"
        ;;
    configure)
        if [ -n "$option_late_packages_value" ]; then
            LATE_PACKAGES="$(echo $option_late_packages_value | tr ',' ' ')"
        fi
        ;;
    after-install)
        $SETARCH chroot $ROOT apt-get $APT_VERBOSE $APT_GET_OPTS install $LATE_PACKAGES >&2
        ;;
esac
