beaker-docker 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 296226435995d98cfeffeb61804ac77e25bd446c8d795610b40957940f8a3a66
4
- data.tar.gz: bd0acc21e9bccf2787b743d1e4c927d6a11d81746f595227a020d1881f6c203e
3
+ metadata.gz: e150251ff135abf3518e13d04408904855a9dab3ef99c273303fad41949f9a52
4
+ data.tar.gz: b2a7e7e3d5453a482480c126992e24d2e29ed5d114d6f7b0434f4e739a2371e0
5
5
  SHA512:
6
- metadata.gz: c17ec27c00fe4bc5b4397c65b9d13f3154d172795c1a4306f26af2caef9dbcbd3c336c430fde0479a09c42c754b592cc26870ddce3cfbb58d07248382ab1364e
7
- data.tar.gz: d75961b6868c5b512b9dd8948d9a51d02d6a0cd24763ed4d275af81dfa16748f099eb72f3ac4d70bf50466dd41a1f4a6d7bfa258205952353adcad5d653fdef9
6
+ metadata.gz: 17e521d8e979ccfd11f6d160382f2832a4ede66b21737a36f2bad734c237a79e886aecb63e253defcf7b589922536e9dbc901afb650297e10dff75c5eff77f66
7
+ data.tar.gz: 15de0c0498a3d2faccd6add7866ec1912e725947a0654e66ed470714abf3a007a877af38cb97909d7a086658d4d36188bfba7c103bb223a296563aa0d973b364
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.1](https://github.com/voxpupuli/beaker-docker/tree/1.1.1) (2022-02-11)
4
+
5
+ [Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.1.0...1.1.1)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Arch Linux: do not install openssh twice [\#58](https://github.com/voxpupuli/beaker-docker/pull/58) ([bastelfreak](https://github.com/bastelfreak))
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Remove beaker from Gemfile [\#62](https://github.com/voxpupuli/beaker-docker/pull/62) ([bastelfreak](https://github.com/bastelfreak))
14
+ - CI: Switch centos:8 to centos:stream8 image [\#61](https://github.com/voxpupuli/beaker-docker/pull/61) ([bastelfreak](https://github.com/bastelfreak))
15
+
3
16
  ## [1.1.0](https://github.com/voxpupuli/beaker-docker/tree/1.1.0) (2022-01-27)
4
17
 
5
18
  [Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.0.1...1.1.0)
@@ -8,6 +21,10 @@
8
21
 
9
22
  - Use host\_packages helper to reuse logic from beaker [\#59](https://github.com/voxpupuli/beaker-docker/pull/59) ([ekohl](https://github.com/ekohl))
10
23
 
24
+ **Merged pull requests:**
25
+
26
+ - Release 1.1.0 [\#60](https://github.com/voxpupuli/beaker-docker/pull/60) ([ekohl](https://github.com/ekohl))
27
+
11
28
  ## [1.0.1](https://github.com/voxpupuli/beaker-docker/tree/1.0.1) (2021-09-13)
12
29
 
13
30
  [Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.0.0...1.0.1)
data/Gemfile CHANGED
@@ -2,24 +2,6 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- def location_for(place, fake_version = nil)
6
- if place =~ /^git:([^#]*)#(.*)/
7
- [fake_version, { :git => $1, :branch => $2, :require => false }].compact
8
- elsif place =~ /^file:\/\/(.*)/
9
- ['>= 0', { :path => File.expand_path($1), :require => false }]
10
- else
11
- [place, { :require => false }]
12
- end
13
- end
14
-
15
-
16
- # We don't put beaker in as a test dependency because we
17
- # don't want to create a transitive dependency
18
- group :acceptance_testing do
19
- gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '>= 4.30')
20
- end
21
-
22
-
23
5
  if File.exists? "#{__FILE__}.local"
24
6
  eval(File.read("#{__FILE__}.local"), binding)
25
7
  end
@@ -3,7 +3,7 @@ HOSTS:
3
3
  centos8:
4
4
  platform: el-8-x86_64
5
5
  hypervisor: docker
6
- image: centos:8
6
+ image: quay.io/centos/centos:stream8
7
7
  roles:
8
8
  - master
9
9
  - agent
@@ -562,9 +562,9 @@ module Beaker
562
562
  EOF
563
563
  when /archlinux/
564
564
  dockerfile += <<~EOF
565
- RUN pacman --noconfirm -Sy archlinux-keyring
566
- RUN pacman --noconfirm -Syu
567
- RUN pacman -S --noconfirm openssh #{additional_packages.join(' ')}
565
+ RUN pacman --sync --refresh --noconfirm archlinux-keyring
566
+ RUN pacman --sync --refresh --noconfirm --sysupgrade
567
+ RUN pacman --sync --noconfirm #{additional_packages.join(' ')}
568
568
  RUN ssh-keygen -A
569
569
  RUN sed -ri 's/^#?UsePAM .*/UsePAM no/' /etc/ssh/sshd_config
570
570
  RUN systemctl enable sshd
@@ -1,3 +1,3 @@
1
1
  module BeakerDocker
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
@@ -751,7 +751,9 @@ module Beaker
751
751
  'image' => 'foobar',
752
752
  })
753
753
 
754
- expect( dockerfile ).to be =~ /RUN pacman -S --noconfirm openssh/
754
+ expect( dockerfile ).to match(/RUN pacman --sync --refresh --noconfirm archlinux-keyring/)
755
+ expect( dockerfile ).to match(/RUN pacman --sync --refresh --noconfirm --sysupgrade/)
756
+ expect( dockerfile ).to match(/RUN pacman --sync --noconfirm curl ntp net-tools openssh/)
755
757
  end
756
758
  end
757
759
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-docker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-01-27 00:00:00.000000000 Z
14
+ date: 2022-02-17 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rspec