From 7cc8e51d73dfb267d8baf7f8102e4541e39b54fb Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Wed, 2 Jun 2010 18:13:45 +0000 Subject: [PATCH] * Update: Change default update URLs to .su2 for pack200 --- .../src/net/i2p/router/web/ConfigUpdateHandler.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java index cea2a11b2f..cc8e01bc05 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java @@ -42,11 +42,15 @@ public class ConfigUpdateHandler extends FormHandler { public static final String PROP_ZIP_URL = "router.updateUnsignedURL"; public static final String PROP_UPDATE_URL = "router.updateURL"; + /** + * Changed as of release 0.7.14 from .sud to .su2 + * Update hosts must maintain both for several releases + */ public static final String DEFAULT_UPDATE_URL = - "http://echelon.i2p/i2p/i2pupdate.sud\r\n" + - "http://stats.i2p/i2p/i2pupdate.sud\r\n" + - "http://www.i2p2.i2p/_static/i2pupdate.sud\r\n" + - "http://update.postman.i2p/i2pupdate.sud" ; + "http://echelon.i2p/i2p/i2pupdate.su2\r\n" + + "http://stats.i2p/i2p/i2pupdate.su2\r\n" + + "http://www.i2p2.i2p/_static/i2pupdate.su2\r\n" + + "http://update.postman.i2p/i2pupdate.su2" ; public static final String PROP_TRUSTED_KEYS = "router.trustedUpdateKeys"; -- GitLab