File tree 8 files changed +10
-10
lines changed
8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 26
26
- almalinux-8
27
27
- almalinux-9
28
28
- amazonlinux-2023
29
- - centos-7
30
- - centos-stream-8
31
29
- centos-stream-9
32
30
- rockylinux-8
33
31
- rockylinux-9
39
37
- name : Check out code
40
38
uses : actions/checkout@v4
41
39
- name : Install Chef
42
- uses :
actionshub/[email protected] .0
40
+ uses :
actionshub/[email protected] .1
43
41
- name : Dokken
44
42
uses :
actionshub/[email protected]
45
43
env :
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ This file is used to list changes made in each version of the yum-elrepo cookboo
4
4
5
5
## Unreleased
6
6
7
+ - Add new v2 GPG key
8
+
7
9
## 2.2.10 - * 2024-05-03*
8
10
9
11
## 2.2.9 - * 2024-05-03*
Original file line number Diff line number Diff line change 1
1
default [ 'yum' ] [ 'elrepo' ] [ 'mirrorlist' ] = "https://elrepo.org/mirrors-elrepo.el#{ yum_elrepo_release } "
2
2
default [ 'yum' ] [ 'elrepo' ] [ 'description' ] = "ELRepo.org Community Enterprise Linux Repository - el#{ yum_elrepo_release } "
3
- default [ 'yum' ] [ 'elrepo' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org'
3
+ default [ 'yum' ] [ 'elrepo' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org https://www.elrepo.org/RPM-GPG-KEY-v2-elrepo.org '
4
4
default [ 'yum' ] [ 'elrepo' ] [ 'enabled' ] = true
Original file line number Diff line number Diff line change 1
1
default [ 'yum' ] [ 'elrepo-extras' ] [ 'mirrorlist' ] = "https://elrepo.org/mirrors-elrepo-extras.el#{ yum_elrepo_release } "
2
2
default [ 'yum' ] [ 'elrepo-extras' ] [ 'description' ] = "ELRepo.org Community Enterprise Linux Extras Repository - el#{ yum_elrepo_release } "
3
- default [ 'yum' ] [ 'elrepo-extras' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org'
3
+ default [ 'yum' ] [ 'elrepo-extras' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org https://www.elrepo.org/RPM-GPG-KEY-v2-elrepo.org '
4
4
default [ 'yum' ] [ 'elrepo-extras' ] [ 'enabled' ] = true
Original file line number Diff line number Diff line change 1
1
default [ 'yum' ] [ 'elrepo-kernel' ] [ 'mirrorlist' ] = "https://elrepo.org/mirrors-elrepo-kernel.el#{ yum_elrepo_release } "
2
2
default [ 'yum' ] [ 'elrepo-kernel' ] [ 'description' ] = "ELRepo.org Community Enterprise Linux Kernel Repository - el#{ yum_elrepo_release } "
3
- default [ 'yum' ] [ 'elrepo-kernel' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org'
3
+ default [ 'yum' ] [ 'elrepo-kernel' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org https://www.elrepo.org/RPM-GPG-KEY-v2-elrepo.org '
4
4
default [ 'yum' ] [ 'elrepo-kernel' ] [ 'enabled' ] = true
Original file line number Diff line number Diff line change 1
1
default [ 'yum' ] [ 'elrepo-testing' ] [ 'mirrorlist' ] = "https://elrepo.org/mirrors-elrepo-testing.el#{ yum_elrepo_release } "
2
2
default [ 'yum' ] [ 'elrepo-testing' ] [ 'description' ] = "ELRepo.org Community Enterprise Linux Testing Repository - el#{ yum_elrepo_release } "
3
- default [ 'yum' ] [ 'elrepo-testing' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org'
3
+ default [ 'yum' ] [ 'elrepo-testing' ] [ 'gpgkey' ] = 'https://elrepo.org/RPM-GPG-KEY-elrepo.org https://www.elrepo.org/RPM-GPG-KEY-v2-elrepo.org '
4
4
default [ 'yum' ] [ 'elrepo-testing' ] [ 'enabled' ] = true
Original file line number Diff line number Diff line change 5
5
config . color = true # Use color in STDOUT
6
6
config . formatter = :documentation # Use the specified formatter
7
7
config . log_level = :error # Avoid deprecation notice SPAM
8
- config . platform = 'centos '
9
- config . version = '7 '
8
+ config . platform = 'almalinux '
9
+ config . version = '9 '
10
10
end
Original file line number Diff line number Diff line change 32
32
) . each do |repo |
33
33
describe ini ( "/etc/yum.repos.d/#{ repo } .repo" ) do
34
34
its ( "#{ repo } .gpgcheck" ) { should cmp 1 }
35
- its ( "#{ repo } .gpgkey" ) { should cmp 'https://elrepo.org/RPM-GPG-KEY-elrepo.org' }
35
+ its ( "#{ repo } .gpgkey" ) { should cmp 'https://elrepo.org/RPM-GPG-KEY-elrepo.org https://www.elrepo.org/RPM-GPG-KEY-v2-elrepo.org ' }
36
36
end
37
37
end
You can’t perform that action at this time.
0 commit comments