[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)
[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
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"
"""
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")