From a2349f2273768511c35828711559c4e82a05a490 Mon Sep 17 00:00:00 2001 From: idziubenko Date: Fri, 15 Oct 2021 13:06:45 +0300 Subject: [PATCH] ftp to https --- pym/update/variables/update.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pym/update/variables/update.py b/pym/update/variables/update.py index b3079ea..b5e8535 100644 --- a/pym/update/variables/update.py +++ b/pym/update/variables/update.py @@ -1549,7 +1549,8 @@ class VariableClUpdateBinhostList(Variable): Список хостов с бинарными обновлениями """ type = "list" - value = ["ftp://ftp.calculate-linux.ru/calculate"] + value = ["https://mirror.calculate-linux.org/"] + # value = ["ftp://ftp.calculate-linux.ru/calculate"] class VariableClUpdateBinhostUnstableList(Variable): @@ -1557,7 +1558,8 @@ class VariableClUpdateBinhostUnstableList(Variable): Список хостов с бинарными обновлениями """ type = "list" - value = ["ftp://ftp.calculate-linux.ru/testing"] + value = ["https://testing.calculate-linux.org/"] + # value = ["ftp://ftp.calculate-linux.ru/testing"] class VariableClUpdateBinhostBase(Variable):