Compare commits

..

No commits in common. "a8" and "a9" have entirely different histories.
a8 ... a9

2 changed files with 5 additions and 13 deletions

View File

@ -5,14 +5,14 @@ actions:
enabled: true
- changelog_entry:
- name: "Sergey Fokin"
email: "sfokin@cloudlinux.com"
- name: "Eduard Abdullin"
email: "eabdullin@almalinux.org"
line:
- "Аdd AlmaLinux support"
- "Fix permission for custom created gpg dir"
- "Change gpg server to pgp.mit.edu"
- add_files:
- type: "patch"
name: "hplip-3.18.4-gpgdir-rules-gpg-server.patch"
name: "hplip-3.21.2-gpgdir-rules-gpg-server.patch"
number: 100

View File

@ -12,15 +12,6 @@ diff -uprN a/base/password.py b/base/password.py
diff -uprN a/base/validation.py b/base/validation.py
--- a/base/validation.py 2021-07-16 11:19:07.364594092 +0300
+++ b/base/validation.py 2021-07-16 11:22:50.609324314 +0300
@@ -42,7 +42,7 @@ class DigiSign_Verification(object):
class GPG_Verification(DigiSign_Verification):
- def __init__(self, pgp_site = 'pool.sks-keyservers.net', key = 0x4ABA2F66DBD5A95894910E0673D770CDA59047B9):
+ def __init__(self, pgp_site = 'pgp.mit.edu', key = 0x4ABA2F66DBD5A95894910E0673D770CDA59047B9):
self.__pgp_site = pgp_site
self.__key = key
self.__gpg = utils.which('gpg',True)
@@ -55,7 +55,7 @@ class GPG_Verification(DigiSign_Verifica
if not os.path.exists(self.__gpg_dir):
@ -30,3 +21,4 @@ diff -uprN a/base/validation.py b/base/validation.py
except OSError:
log.error("Failed to create %s" % self.__gpg_dir)
self.__change_owner()