From: Michael Tremer Date: Thu, 20 Apr 2023 19:40:09 +0000 (+0000) Subject: hub: Move from pakfirehub.ipfire.org to pakfire.ipfire.org X-Git-Tag: 0.9.29~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a40a10cd0ddb54fad6d6a25791ad47e163dcd5b;p=pakfire.git hub: Move from pakfirehub.ipfire.org to pakfire.ipfire.org Signed-off-by: Michael Tremer --- diff --git a/contrib/config/client.conf b/contrib/config/client.conf index e9d4ae785..503d0e18a 100644 --- a/contrib/config/client.conf +++ b/contrib/config/client.conf @@ -3,7 +3,7 @@ [client] # The URL of the server to connect to. -# server = https://pakfirehub.ipfire.org/ +# server = https://pakfire.ipfire.org/ # Your credentials to log in on the hub # keytab = /etc/pakfire/pakfire.keytab (defaults to /etc/krb5.keytab) diff --git a/contrib/config/daemon.conf b/contrib/config/daemon.conf index 41569ad25..70990a1a0 100644 --- a/contrib/config/daemon.conf +++ b/contrib/config/daemon.conf @@ -3,7 +3,7 @@ [daemon] # The URL of the server to connect to. -# server = https://pakfirehub.ipfire.org/ +# server = https://pakfire.ipfire.org/ # The keytab file that is being used to authenticate against the Hub # keytab = /etc/krb5.keytab diff --git a/src/pakfire/constants.py b/src/pakfire/constants.py index 7ec637ea0..b3b3dc347 100644 --- a/src/pakfire/constants.py +++ b/src/pakfire/constants.py @@ -26,7 +26,7 @@ from .errors import * from .__version__ import PAKFIRE_VERSION # The default hub to connect to. -PAKFIRE_HUB = "https://pakfirehub.ipfire.org/" +PAKFIRE_HUB = "https://pakfire.ipfire.org/" SYSCONFDIR = "/etc" diff --git a/src/scripts/pakfire-client.in b/src/scripts/pakfire-client.in index 6242d808e..2441d1b26 100644 --- a/src/scripts/pakfire-client.in +++ b/src/scripts/pakfire-client.in @@ -112,7 +112,7 @@ class Cli(object): """ Establishes a connection to the hub """ - huburl = self.config.get("client", "server", "https://pakfirehub.ipfire.org") + huburl = self.config.get("client", "server", "https://pakfire.ipfire.org") # keytab keytab = self.config.get("client", "keytab")