def _gpgurl(release: int) -> str:
return "https://www.centos.org/keys/RPM-GPG-KEY-CentOS-Official"
- @staticmethod
- def _epel_gpgurl() -> str:
- return "https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-$releasever"
-
@staticmethod
def _extras_gpgurl(release: int) -> str:
return "https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-Extras"
@classmethod
def _epel_repos(cls, config: MkosiConfig) -> list[Repo]:
- epel_gpgurl = cls._epel_gpgurl()
+ epel_gpgurl = "https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-$releasever"
if config.local_mirror:
return []